1樓:匿名使用者
#include "stdafx.h"
#include
#define sever_type 3
#define oil_type 4
int oil_type;
int serve_type;
double all_price;
struct oil
char *type;
double price;
struct serves
char *type;
double reduce;
oil oil[4]=,,,
,};serves serve[3]=,
,,};
void prinf_oil_message()
for(int i=0;iprintf("%s: **是%.2f \n",oil[i].type,oil[i].price);
for(int j=0;jprintf("%s: 優惠%.2f \n",serve[j].type,serve[j].reduce);
void choice_serve_oil(int ml,char s_type,int o_type)
int current_ml=ml;
switch(s_type)
case 'm' :
serve_type=0;
break; /* 可選的 */
case 'e' :
serve_type=1;
break; /* 可選的 */
/* 您可以有任意數量的 case 語句 */
default :
serve_type=2;
printf("error %s:pls input again\n",serve[serve_type].type); /* 可選的/* 可選的 */break;
switch(o_type)
case 90 :
oil_type=0;
break; /* 可選的 */
case 93 :
oil_type=1;
break; /* 可選的 */
case 97 :
oil_type=2;
break; /* 可選的 */
/* 您可以有任意數量的 case 語句 */
default :
oil_type=3;
printf("error %s:pls input again\n",oil[oil_type].type); /* 可選的
*/break;
if(serve_type!=2&&oil_type!=3)
all_price=current_ml*(1-serve[serve_type].reduce)*oil[oil_type].price;
printf("你的服務: %s,油: %s\n",serve[serve_type].type,oil[oil_type].type);
printf("總**為%.2f,welcome\n",all_price);
int main(int argc, char* ar**)
int weight_kg=0;
char seversult;
int oilresult=0;
prinf_oil_message();
printf("welcome oilstation,pls choice serves:\n");
while(true)
printf("pls input: 重量(kg),服務(m or e),油型(90,93,97)\n");
scanf("%d,%c,%d",&weight_kg,&seversult,&oilresult);
choice_serve_oil(weight_kg,seversult,oilresult);
return 0;
2樓:jw木有道理
int main()
if(c == 'm')
else if(c == 'e')
else
printf("%.2f\n",cost);
return 0;}
c語言問題 求大佬幫助
3樓:紫薇參星
按照題目要求編寫的使用do-while語句列印水仙花數的c語言程式如下
#include
int main()
while(x<=999);
return 0;}
c語言問題怎麼做?求大佬幫寫**
4樓:瘋狂小鳥
#include
main()
{ int t,l[10],c[10],i,j,k,m;
while(1){
scanf("%d",&t);
for(i=0;i
如圖所示,望採納。。。。。。
程式設計問題,求大佬幫忙
5樓:aaa軟體教育
如果有心從事程式設計方向的工作,最好到專業機構深入學習、多實踐,更貼近市場,這樣更有利於將來的發展。建議考慮時下火爆的python,python不僅入門簡單,靈活高效。更是在人工智慧方面應用廣泛,對將來大有裨益
C語言問題,求高手幫忙,C語言問題,求高手幫忙!!
1.輸入輸出問題,在輸入整數或浮點數後面直接輸入字元或字串,要清除一下回車號,或都在輸入整數後直接清空快取,再讀取內容 2.越界問題,修正問題1後,如果記憶體裡沒有連繼的 0 字元,你這程式會嚴重越界 語句 k j 1 前加一句 if c j 0 break 到尾就不要再迴圈了,防止越界 改完後的效...
c語言問題求解答,C語言問題,求幫忙解答!!
夢亦月兮 a1 a2對換 400,300 a3 a4對換 200,100 結果 400,300,200,100 注 sub1裡面就是乙個對換值的方法 岔路程式緣 結果是 100,400,100,200 說明 sub1只是交換了形參的值,但並沒有交換實參!但是,最值得注意的是sub1悄悄改變了a1這個...
c語言問題,C語言問題。
考驕 用指標將兩個字串連結接起來,前一個while迴圈,確定s1字串走完,第二個while開始將s1的逐個字元複製給s1走完,也就是末尾,這樣就可以把字串都匯入到s1中 最後一個空寫的應該寫return s1 長魚修韋 很久沒碰這東西了。我來解釋下 第一個while的迴圈是為了讓指標指向第一個字串的...