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