complete 1000 with korean C
This commit is contained in:
15
zeta_C/completed/1000.c
Normal file
15
zeta_C/completed/1000.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include<stdio.h>
|
||||
|
||||
#define 정수 int
|
||||
#define 반환 return
|
||||
#define 출력 printf
|
||||
#define 입력 scanf
|
||||
#define 더하기 +
|
||||
|
||||
정수 main() {
|
||||
정수 에이, 비;
|
||||
입력("%d %d", &에이, &비);
|
||||
출력("%d\n", 에이 더하기 비);
|
||||
|
||||
반환 0;
|
||||
}
|
||||
Reference in New Issue
Block a user