博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

重学C语言

Posted on 2019-10-03 10:42  沉默改良者  阅读(231)  评论(0编辑  收藏  举报

重学C语言

 1 #include <stdio.h>
 2 
 3 int main()
 4 {
 5     int age = 10;
 6     int height = 72;
 7     
 8     printf("I am %d year old.\n",age);
 9     printf("I am %d inches tall.\n",height);
10     
11     return 0;
12 }