提交时间:2023-12-31 08:37:44

运行 ID: 33633

#include<bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x>>y; for(int i=1;i<=x;i++){ for(int j=1;j<=y;j++){ cout<<"*"<<" "; } cout<<endl; } }