Lesson 1.

This commit is contained in:
unlockable
2022-09-23 17:43:35 +08:00
parent 24eedf3824
commit 1bc763e78e
3 changed files with 32 additions and 0 deletions

13
01/Experiment1-1.c Normal file
View File

@@ -0,0 +1,13 @@
#include "stdio.h"
#include "stdlib.h"
int main() {
int a, b;
char c;
c=getchar();
scanf("%d%d",&a,&b);
putchar(c);
printf("%d,%d\n",a,b);
system("pause");
return 0;
}