fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main (void)
  4. {
  5. int num;
  6. char ch;
  7.  
  8. printf("輸入學號\n");
  9. scanf("%d\n",&num);
  10.  
  11. fflush(stdin);
  12.  
  13. printf("輸入年齡\n");
  14. scanf("%c\n",&ch);
  15.  
  16. printf("學生學號是%d,學生年齡為%c",num,ch);
  17.  
  18. return 0;
  19.  
  20. }
Success #stdin #stdout 0s 5288KB
stdin
8787123 88
stdout
輸入學號
輸入年齡
學生學號是8787123,學生年齡為8