输入 一个浮点数 输出 该浮点数的平方。不要换行。
#include<iostream>
using namespace std;
int main()
{
float x;
cin >> x;
cout << x * x;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
float x;
cin >> x;
cout << x * x;
return 0;
}