/*
9. 请编写1个程序,定义变量保存1个人的年龄、身高、体重。
然后输出这个人的信息.
输出:我的年龄是xx岁,我的身高是xx,我的体重是xxKg
*/
#include <stdio.h>
int main(int argc, const char * argv[])
{
int age;//年龄
int height;//身高
int weight;//体重
//为变量赋值
age = 10;
height = 120;
weight = 50;
//打印
printf("我的年龄是%d岁,我的身高是%dcm,我的体重是%dKg\n",age,height,weight);
return 0;
}
|
|