提交时间:2023-12-31 08:46:57

运行 ID: 33643

#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; } }