假如我们要算a的平方,则cout<<之后直接放算式,如a*a
例:
#include <iostream> using namespace std; int main(void) { int a; cout << "输入数字,这里可以帮你计算数字的平方" << endl; cout << "你想要计算的数字: "; cin >> a; cout << "计算结果: "; cout << a*a << endl; system("pause"); return 0; }
假如我们要算a的平方,则cout<<之后直接放算式,如a*a
例:
#include <iostream> using namespace std; int main(void) { int a; cout << "输入数字,这里可以帮你计算数字的平方" << endl; cout << "你想要计算的数字: "; cin >> a; cout << "计算结果: "; cout << a*a << endl; system("pause"); return 0; }