- C++
搞笑.cpp
- 2024-10-18 23:27:13 @
#include<bits/stdc++.h> using namespace std; int main() { char d='A'; int a; cin>>a; for(int i=1;i<=a;i++) { for(int j=1;j<=i;j++) { cout<<d; d++; } cout<<endl; } return 0; }
2 comments
-
松饼好吃 LV 5 @ 2024-10-18 23:56:40
-
2024-10-18 23:32:15@
输入99试试,会出现如下的文字,比如:安勃吹斗。
- 1