mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 08:10:27 +08:00
19 lines
213 B
C++
19 lines
213 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
int main(){
|
|
char a;
|
|
int b;
|
|
cin >>a;
|
|
cin >>b;
|
|
for(int i=b;i>=1;i--){
|
|
for(int j=1;j<=b;j++){
|
|
cout <<a<<" ";
|
|
}
|
|
cout <<endl;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|