信息
- ID
- 955
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 5
- 标签
- 递交数
- 722
- 已通过
- 287
- 上传者
//
// @@@@@
// @@@@@
// @@@@@
// @@@@@
//@@@@@
//
//
#include<iostream>
//#include<iomanip>
//#include<math.h>
using namespace std;
int n;
int main(){
cin >> n;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n - i; j++){
cout << " ";
}
for(int j = 1; j <= n; j++){
cout << "@";
}
cout << endl;
}
return 0;
}