优化了命名
This commit is contained in:
11
C03-输入输出专题/IO/getchar_putchar.c
Normal file
11
C03-输入输出专题/IO/getchar_putchar.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
int ch;
|
||||
ch = getchar();
|
||||
putchar(ch);
|
||||
|
||||
exit(0);
|
||||
}
|
||||
Reference in New Issue
Block a user