Coding is the closest thing we have to superpower !
下面一段代码的功能是:输入一个数,输出这个数的2倍。
#include <bits/stdc++.h>
using namespace std;
int main(){
int a;//定义一个变量,用来存储数据
cin >> a;//输入一个数,放入到a中
cout << a * 2;//输出
return 0;
}
你需要实现功能:输入一个数,输出它的平方。
输入一个整数
输出这个数的平方
1
3
9
6
36