fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int score=0;
  5. printf("请输入成绩:");
  6. scanf("%d\n",&score);
  7. printf("成绩是:%d\n",score);
  8. return 0;
  9.  
  10. }
Success #stdin #stdout 0s 5296KB
stdin
95
stdout
请输入成绩:成绩是:95