打印重复数字图案

时间:2016-02-19 04:22:01

标签: c++

如何显示连续数字的重复模式?

这是我希望实现的目标:

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?之后重复?

1 个答案:

答案 0 :(得分:0)

使用模数运算符。

inline