mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1766.c
This commit is contained in:
parent
eafef4bac8
commit
8ba3c9f5b2
15
QUSTOJ/1766.c
Normal file
15
QUSTOJ/1766.c
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
char a[256];
|
||||||
|
char b[256];
|
||||||
|
char c[256];
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
for(int i=0;i<5;i++)
|
||||||
|
{
|
||||||
|
scanf("%s %s %s",a,b,c);
|
||||||
|
printf("%s %s %s\n",a,b,c);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user