2 条题解
-
-1ta18姚懿恒 (ta18姚懿恒) LV 7 @ 2021-12-05 10:21:20
#include <iostream>
#include<cmath>
#include<cstdio>
#include<iomanip>
using namespace std;
int main()
{
int x;
cin>>x;
cout << x*(x+2) << endl;
} -
-42021-10-29 15:52:30@
#include <iostream>
using namespace std;
int main()
{
int x;
cin>>x;
cout << x*(x+2) << endl;
}
- 1