/*
12.在屏幕上输出:我的手机 型号:998 价格:1500元 重量:0.3kg,
请定义变量存存储上面的值,并显示在屏幕上.*/
#include <stdio.h>
int main(int argc, const char * argv[]) {
int model = 998;//型号
int price = 1500;//价格
double weight = 0.3;//重量
printf("我的手机 型号:%d 价格:%d 重量:%lfKg\n",model,price,weight);//打印
return 0;
}
|
|