c語言題要求按照百分制考試成績輸出對應的等級(分別用if和switch,寫兩種)

時間 2021-08-11 17:51:00

1樓:龍不悔

#include

void judge1(int score);

void judge2(int score);

void main()

getch();

}void judge1(int score)void judge2(int score)case 7:printf("judge2 --> b\n");break;

case 6:printf("judge2 --> c\n");break;

default:

printf("judge2 --> d\n"); break;}}根據你的要求寫的,你看看有什麼疑問,

2樓:本地人

使用if語句實現:

#include

void main()

}使用switch語句實現:

#include

void main()

scanf("%d",&x);}}

3樓:劍影越林

#intclude

char grade(int score)//_______________________________char level(int score)}default:return d;}}

//_____________________________main()}

c語言問題,要求用switch語句,輸入百分制成績,要求輸出成績等級為a b c d e,90分以

4樓:匿名使用者

填空填(int)(score/10)

5樓:霍士弘

問號處是(int)score/10。這個意思是分數除10比如說85分。除10等於8。就是8

6樓:陸仁淼

問號處是score/10

簡單的c語言題 編寫一程式,要求輸入x的值,輸出y的值。要求分別用switch語句和巢狀的if語句寫。

7樓:楊柳小火

switch語句::

#include

main()

printf("y=%d",b);

}if語句::

#include"stdio.h"

main()

8樓:林嶺飛狐

#include

void main()}

9樓:匿名使用者

|/*使用if巢狀語句

回*/#include

void main()

/*使用switch語句*/

#include

void main()

while(x<-5||答x>10);

if(x<0) choice=1;

if(x==0) choice=0;

if(x>0) choice=2;

switch(choice)

printf("%d\n",y);}

10樓:懶了的猴子

#include

main()

11樓:匿名使用者

#include

int main()

else

if(x==0)

else

if((x>0)&&(x<10))

else

printf("the input is error!");

return 0;}

12樓:匿名使用者

if版:

#include

#include

int main(int argc, char *argv)printf("%d\n",y);

return 0;}

c語言中用 switch 怎麼寫然後輸入一個分數根據分數段輸出 abcde。

13樓:匿名使用者

常用的方法 就是把分數除10

然後對結果進行switch

0 ~567

89 ~10

五個段。

14樓:大寶與瑩寶

常用的方法 就是把分數除10

然後對結果進行switch

事先編好程式,要求分別用if語句和switch語句實現。執行程式,並檢查結果是否正確。

② 再執行一次程式,輸入分數為負值(如-70),這顯然是輸入時出錯,不應給出等級。修改程式,使之能正確處理任何資料:當輸入資料大於100或小於0時,通知使用者“輸入資料錯”,程式結束。

90-100:a,80-89:b,。。0-59:e

#include

main(){

int v;

int f;

printf("input fenshu between 0 and 100 :");

scanf("%d",&f);

v = f / 10;

printf("the mark is: ");

switch(v){

case 10: case 9: printf("a\n");break;

case 8: printf("b\n");break;

case 7: printf("c\n");break;

case 6: printf("d\n");break;

default: printf("e\n");break;

15樓:金色潛鳥

假定輸入分數為整型,0-100

90-100:a,80-89:b,。。0-59:e#include

main()

return 0;}

16樓:匿名使用者

#include "stdio.h"

void main()

if( fenshu > 100 || fenshu < 0 )switch(fenshu/10)}}

17樓:鬥帝之上魂鬥羅

||int main()

if(score==100)

switch(score/10%10)

return 0;}

18樓:黨適縱真如

#include

int main()

return 0;}

百分數的應用題,百分數應用題和答案 10

1.某種洗衣機按定價賣出克得利潤240元。如果按定價的75 則虧損180元。這種洗衣機的進價是多少元?解 設定價x元 x 240 75 x 180 x 75 x 180 240 25 x 420 x 1680 1680 240 1440 元 答 進價是1440元.2.1.六年級 1 班有學生58人,...

數學題。關於百分之三求教,數學題,百分比怎麼算? 比如40000的百分之3怎麼算?

我覺得稅務局這麼算的話。應該是交完稅後是100萬。按方程算吧。設你有的錢是x,所以納稅就應該是0.03x,加起來一共是100萬。即x 0.03x 100萬,求得x 100萬 1 0.03 100萬 1.03只能這麼來,才有了100萬 1.03 是這個意思,你開一張發票,所開商品就需要交3 的稅。也就...

百分數應用題

乙個數比另乙個數多 少 百分之幾的應用題 1 果園裡有蘋果樹50棵,梨樹40棵,1 蘋果樹比梨樹多百分之幾?2 梨樹比蘋果樹少百分之幾?3 蘋果樹比梨樹多總數的百分之幾?2 水泥廠一月份計畫生產水泥200噸,實際比計畫超產60噸,超產百分之幾?3 小明家一月份用電150度,二月份用電120度,二月份...