Почему область возвращается как 0?

Вот код.

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;


}
6
задан Matt Bettinson 15 January 2011 в 15:52
поделиться