如何显示连续数字的重复模式?
这是我希望实现的目标:
1 12 ... 123456789 1234567890 12345678901
这是我的代码:
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int i,j,rows;
cout << "Enter the number of rows: ";
cin >> rows;
for(i=1;i<=rows;++i)
{
for(j=1;j<=i;++j)
{
cout << j << " ";
}
cout << endl;
}
getch();
return 0;
}
这不会重复这些字符。如何在9?之后重复?
答案 0 :(得分:0)
使用模数运算符。
inline