Create 1739.c

pull/14/head
Kirigaya Kazuto 2016-05-21 12:42:45 +08:00
parent 233427153c
commit 17dd78834c
1 changed files with 33 additions and 0 deletions

33
QUSTOJ/1739.c Normal file
View File

@ -0,0 +1,33 @@
#include <stdio.h>
#define n "\n"
int main()
{
printf(
"123"n
"124"n
"132"n
"134"n
"142"n
"143"n
"213"n
"214"n
"231"n
"234"n
"241"n
"243"n
"312"n
"314"n
"321"n
"324"n
"341"n
"342"n
"412"n
"413"n
"421"n
"423"n
"431"n
"432"n
"这样的数共有24个"n
);
return 0;
}