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