fork(1) download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. // your code goes here
  5. int age=18;
  6. int height =162;
  7. int weight = 42;
  8. printf("我的年龄是%d,我的身高是 %d,我的体重是%d",age,height,weight);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
我的年龄是18,我的身高是 162,我的体重是42