Files
BasicsOfComputerSoftwareEng…/POP/01/Experiment1-1.c
2023-02-21 10:56:54 +08:00

13 lines
203 B
C

#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;
}