已解决 郑嘉豪 资深守护 题目链接: 酷町堂:9105 #include<iostream> using namespace std; int main(){ int n,m; cin>>m>>n; for(int i=1;i<=10;i++){ for(int j=1;j<=m;j++){ cout<<n<<" "; } cout<<endl; } return 0; } 怎么错了?谢谢!
已采纳 崔安昊 中级光能 定义 n,m; 输入>>n>>m; for(int i=1;i<=10;i++){ for(int j=1;j<=n;j++){ 输出<<m<<" "; } 输出<<endl; } 勉强给个答案