1101: 那些四位數
Time Limit: 1 Sec Memory Limit: 128 MB
Submit: 126 Solved: 94
原題連結
Description
那些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;
}
}
}
}
}