商場的每個商品都需要列印銷售標籤,請程式設計列印一個標籤
阿新 • • 發佈:2018-11-10
順序結構流程及應用
#include"stdio.h" /*編譯預處理命令*/
void main() /*main函式*/
{
int iYear=2014,iMonth=3,iDay=23,iVol=250; /*定義整型變數並賦值*/
float fPrice=2.5; /*定義實型變數並賦值*/
printf("Name:ChenGuang Milk\n"); /*輸出字串*/
printf("Size:%d ml\n",iVol); /*輸出一個整數*/
printf("price;RMB%0.2f\n",fPrice); /*輸出一個實數*/
printf("Origin:ShenZhen\n"); /*輸出字串*/
printf("Date:%d.%d.%d\n",iYear,iMonth,iDay);/*輸出多個整數*/
}
看不懂,就是照抄的。