1102: 那些四位数之二
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 280 Solved: 212
[Submit][Status][Web Board]
Description
那些4位数只由1,2,3,.... p这p个数字组成(p<=9)。请编写程序输出这些4位数。先小后大,每行一个。
Input
一个整数p(p <= 9)
Output
若干个4位数,每行一个.
Sample Input
5
Sample Output
1111
1112
1113
1114
1115
1121
1122
1123
1124
1125
1131
1132
1133
1134
数据太多只弄了一部分
AC代码:
#include<cstdio>
int main(){int n;scanf("%d", &n);for(int i = 1; i <= n; i++){for(int j = 1; j <= n; j++){for(int k = 1; k <= n; k++){for(int t = 1; t <= n; t++){printf("%d%d%d%d\n", i, j, k, t);}}}}return 0;
}