作业介绍
国庆作业:https://www.cjsoj.cn/d/ybtpimer/homework/650e3a4b6f5c10566128774d
赵宸泽、吕家诚记得补完国庆作业。
双重循环输出10~99
#include<bits/stdc++.h>
using namespace std;
int main(){
for(int i=1;i<=9;i++){
for(int j=0;j<=9;j++){
cout<<i<<j<<" ";
}
cout<<endl;
}
return 0;
}
打印n行m列基本模板
for(int i=1;i<=n;i++){//n行
for(int j=1;j<=m;j++)//m列
cout<<....
cout<<endl;//i++时一定要输出换行
}
- 状态
- 已结束
- 题目
- 7
- 开始时间
- 2023-10-21 0:00
- 截止时间
- 2023-11-5 23:59
- 可延期
- 24 小时