试一下代码块

输出a的100倍
1
2
3
4
5
6
7
8
#include<bits.stdc++.h>
using namespace std;
int mian(){
int a;
cin>>a;
cout<<a*100;
return 0;
}

好了!!