Here's the code.
int a;
int pi = 3.14;
int area;
int main()
{
cout << "Input the radius of the circle ";
cin >> a;
a *= a *= pi >> area;
cout << "The area is " << area;
}
| show 7 more comments |
|
The area of a circle is pi * r * r therefore you would want to do;
Hope that helps and they all would need to be floats. |
|||
|
|
|
The
Update You also need to use a floating point type or your answer won't be what you expect.
|
|||||||||||
|
|
I don't have enough patience to decipher your strange code. How about just |
|||||
|
|
Your code doesn't make any sense.
|
||||
|
|
Your code doesn't do what I think you wanted it to do. You don't assign to variables with Also, Also, you want floating-point values, not Also, you should have error checking on your stream extraction! Try:
|
|||
|
|
Wrong datatype. Assigning double value to Write this:
And likewise, change other datatypes to |
|||
|
|
|
Because you're using |
|||
|
All your variables are declared as int, which simply drops any fractional portion assigned to it. To work with floating-point values, use double instead. Also, your equation in almost incomprehensible. Not sure what you're trying to do there. |
|||
|
|
cin >> ...(andcout << ...) is a very special case and<<(and>>) mean something very different in about every other context, including inpi << area? You're lucky you get 0 though, you might as well get anything. – delnan Jan 15 '11 at 15:56a *= a *= pi >> area;has undefined behavior. – Charles Bailey Jan 15 '11 at 15:57