1101: 那些四位数
Time Limit: 1 Sec Memory Limit: 128 MBDescription
那些4位数,只由1,2,3,4这4个数字组成。请编写程序,输出这些4位数,先小后大,每行一个。
Input
无输入
Output
如题
Sample Output
1111
1112
1113
1114
1121
....
....
4444
HINT
Source
#include<iostream>
using namespace std;
main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=4;j++)
{
for(int k=1;k<=4;k++)
{
for(int l=1;l<=4;l++)
{
cout<<i*1000+j*100+k*10+l<<endl;
}
}
}
}
}