fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int age=18;
  6. int height=185;
  7. int weight=125;
  8. printf("李若琪年龄是%d岁,身高%d厘米,体重是%d斤",age,weight,height);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
李若琪年龄是18岁,身高125厘米,体重是185斤