ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1001. Reverse Root

I have too WRONG ANSWER(((help me!!!!
Posted by yerkubekov 22 Oct 2011 15:30
#include <iostream>
using namespace std;
int main()
{
    double a,b,c,d;
    cin >> a >> b >> c >> d;

    cout << sqrt(d) << endl
        << sqrt(c) << endl
        << sqrt(b) << endl
        << sqrt(a) << endl;

    return 0;
}
Re: I have too WRONG ANSWER(((help me!!!!
Posted by leva 10 Dec 2011 01:53
Why you read 4 numbers?
Re: I have too WRONG ANSWER(((help me!!!!
Posted by samboss786 14 Jan 2012 21:05
yes i also have done with 4 numbers now i am in a fix how to terminate it with undefined number set....help me...