刘祖辰


私信TA

用户名:dotcpp0750555

访问量:264

签 名:

等  级
排  名 3755
经  验 1846
参赛次数 12
文章发表 8
年  龄 13
在职情况 学生
学  校 天堂墓园
专  业 阿飘

  自我简介:

#include <bits/stdc++.h>


using namespace std;

typedef long long ll;

int main()

{

    ll n;

    cin>>n;

    for(int i=1; i<=n; i++)

    {

        cout<<i;

        for(int j=1; j< i; j++)

        {

            if(i%j==0)

            {

                cout<<" "<<j;

            }

        }

     cout<<endl;

    }

    return 0;       `

}


 

0.0分

1 人评分

  评论区

  • «
  • »