0 like 0 dislike
10k views
請設計一個程式當使用者輸入一個分數(介於0-100間),程式會輸出相對應的等第

 

輸入範例1

100

輸出範例1

A

輸入範例2

59

輸出範例2

F
[Exercise] Coding (C) - asked in 作業 by (18k points)
ID: 11603 - Available when: Unlimited - Due to: Unlimited
| 10k views
0 0
Called for Help

73 Answers

0 like 0 dislike
Hidden content!
#include <stdio.h>



main()

{
***** ** **** ** * ** * * ** * grade=0;
****** * * *** ** ** * ** ****** * **** * ** ** &grade);
* ** * ** *** **** ** * ** **** * *** * && grade>=90)
* ** * ** *** **** * **** * **** *** *** ****** ** *

      
** * ** ** ***** ***** ** * ** * ** *** * * && grade>=80)
* ***** * * ** ** * * *** * * ******** * ** * * **
* **** * ** ** ** * **** ** * **** **
* * * * ***** * *** *** ** *** * ***** * && grade>=70)
** *** **** * ** * ** ** ** * ** * **** ** * *
* **** ** *** **** *** * **
** * ** *** *** * *** * **** * *** ** ** * * && grade>=60)
****** * *** * ** ** *** ***** ** *** * ***** * * ** *
* * * *** ** ** ** ** ** * * ** *
** ** ** * * ** ** * * * * *** **** * && grade>=0)
**** * ** *** * * ** * ***** * * *** ** ****
**** * * * *** * ** * ** ** * * * * * ** ** * * * * * *
*** * * * *** * ****** *** * * * *** * * *** **** *

}
answered by (-30 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main()

{
*** ** ** ** *** * ** ** ** **** ** * ** score;
* * * * ** ** * * * * **** *** ** **** * * input your score:");
* * * ** * * ** ** ** *** * * *** * ***** ** &score);
**** * * * ** *** *** (score >= 90)
* ** *** *** * ** * * * * * *
*** * * *** * **** ** ** * ** ** * * * *** * *** **** * ** **
*** ** * ** * ***** * ** *** ** * *
**** *** ** * ** * **** ** ** * *** if (score >= 80)
* *** * ** * ** ** * ** * *
* * ** * ** *** **** * *** * * * ** * * ****** ***** * * ** * **** * ***
** ** ** **** *** **** ** * * * ****
*** * ** * * * ** ****** * * ** * if (score >= 70)
* *** * * * * **** * ***** **
** ***** * * **** ***** * * ** *** * ** * *** * * ** *** * *** ** * ** ** *
*** ** * ** ** ** * *
** * ** * *** * ** if (score >= 60)
* ** *** ** * *** * ** ** ** * * *
** * * * * ** * ** * ** ** * *** ****** * ** * ******** **** * *** ** ****
* * ** * ****** * * ** * *
* *** ** **** * * * * *

      {
*** **** ** * ** *** *** * * *** **** ***** * *** ******* * ** ** ***** ** * * **

      }
* * * ** * * * **** * **** **** ** *** ****

      
*** * ******** ** * * * *** ** * 0;

}
answered by (-214 points)
0 like 0 dislike
Hidden content!
#include <stdlib.h>

#include <stdio.h>





int main()

{

   int num;

   scanf("%d", &num);



      if (num >=90)
* **** * * **** **** ** *** ** ** * * * ** ** ** ** * ** *

     else
* *** ** * * ** * * ** * * ** * * * **** * ** (num >=80)
* * * ** ***** ** * * ** *** * * *** * ** * * *
*** * ** ** * * ** * * ** * * * * ** * *
* ** * * * *** * * ** * * **** *** * * * **** ** *** *** * * **** ***** >=70)
*** * * * ****** ** * * * * ******** * ** * ** * ** ****** **** * *** *** * * ** * * **
* * * ** **** * **** ** * * * ****** * ** * * * ** * * *** * * *** ** *** * * *
* ** * *** ** ** **** **** *** * ** ** ** *** ** ** ** ** * * * * ** **** ** **** * ***** * * * *
** * * *** **** * * ** *** ** ** *** * ******* * **** * ** * * ** *** ** * *** ** * ** * ** *** *** * * * *
******* * * **** * * * * * * *** * ** **** * * ** * ** ** * * ** * *** * ** * ** * * *** ** *
* * * ** *** ** **** * *** *** * ** ** * ** *** * * * * ******* * *** ** ** ** * ** ** * *** * * * ** * ***** * *** *



return 0;

}
answered by (56 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main()

{
*** * * **** ** ** * ***** * * * * score;
***** ***** * * * ** * * * * * *** input your score:");
* ** * *** ** * * ** ** *** *** *** **** *** ***** &score);
* * * * * ** ** **** ** * ** * * (score >= 90)

      {
* ** ** * * * ** * ** *** * ** **** ********* * *** ** ** ** * * * **
*** **** **** * * *** *** * **** * *
*** *** ** * *** ** ** ** * *** * if (score >= 80)
****** ****** *** * * ** * **
*** * * ****** * ** **** ***** * *** ** * *** * * * * **
* ** * ** ***** *** ****** ***
* ***** ** ** * ** * ******** if (score >= 70)
**** ** * * ** *** ** * * * ** * **
* *** ** *** * ****** * **** * ***** ** * * *** * ** * * * * * ***** ** * * **
* * * *** *** ** ***** *** ** *** ** *
***** ** * ** *** * **** if (score >= 60)
*** * ** * *** ** ** * ** *** ** ***
** ** * * * * ** * *** * ** * *** **** ** * *** * * ** * * ** * * ** * * * ** ****
*** ** * *** *** *** * *** ***** **
** ** ** * * ********* * ** * * *
*** ** * * ** ***** * ** **
* ** * ***** **** ** ** ***** ** * *** * ** *** ** * * * *** *

      }

      
*** ** *** * * * ** **** *** * **** ** * * * 0;

}
answered by (-214 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main (void)

{
**** * * * * * * ** score=0;
* * * ** * * ** * * **
* * * *** ** * * * * * **** * ** ** **** * input your test point:");
* * * ** * ***** ** * * ** * * ****** *** * **

     
* ** ***** * ** *** * *** ** *** ***** * ****
* * *** * * ** ** ** * *** ** * *** * ** *
**** * *** ** ******** if(score<70)
* ** * * * * ****** * * *** ** * ****
***** * *** * * ** *** * *** if(score<80)
** ** ***** * *** * * * ** ** *** ** * * **
** * *** ** ** ***** ** * * if(score<90)
* ** ** ** * * ** ** * ******* ** * ** *
* ** * ** *** ** * ******* * * *

** * * * * * ***** * ** ** ***** * * * *
* ** * * ** *** * * **** * * **
** ****** ***** ******* *** * * ** ** * * * * *
* ** * * ** ** ** * * * ** 0;

}
answered by (-170 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

int main()

{
** *** ** *** ** score;


* ***** ** *** * * ****** input your score:");
***** ****** * * **** * * * * * *
** * * * * ** ** ** *** *

   {
* * *** ** ** ** ** *** ** * * * * * *
* * ** * **** * * * * *

   else if(score>=80)

   {
* * * * *** ** * *** ** *** ** * ** * ** ** *
** ** * * ** *****
* *** ** * * * * * * if (score>=70)
******* * * * * *
*** *** *** * *** ****** ***** * * ** *** * ** *** * *
* ** **** * * * ** *
* * * ***** * * if (score>=60)
* ** * *** * ** * *
* *** * * **** * ** * **** * * *** * * * ** * ** ** ** *** ****
* * ** **** * *** *
* *** ** ***** ****** * * if (score<60)
* * * ** ** ** * *** **
* ** * ***** ** ****** * **** * ** * ** * * **** **
*** *** ** * ** * * ** **
** *** ** * * * * **** **** * 0;

}
answered by (-30 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<stdlib.h>



int main()

{
* *** * * ********** ** a;
** *** ** * ** * **** ** * * ** * * ** * *
* ** * ** **** * * ** ** * ** * * ** * * ***
** * * * * * ** * ****
*** **** **** ** *
* ** *** * *** * * ** * * ** * * ** *** * ** *** * * *

    }
****** *** * * * ** * * if(a>=80)
*** * ** *** * * ** *
* * * *** * *** ** **** ** ** ** ************* * * * * *
* * * * * ** * *
** * ** * ** **** * if(a>=70)

    {
********** ** *** * ** * * ** * * * ***** ** * *** ** *** *

    }
* * ** * *** * ***** * if(a>=60)
* *** * *** **
* * ** * **** **** * *** *** * ** ****** * ******* *** * ***** ** **
* ** * * ***** ** *
* * ** * *** *** ** * * ** if(a<60)
* * * * *** ** * ** *
* * *** *** ** *** * * * *** ** * *** * *** * **** * ***

    }
** ** ** **** *** ** * **


******* ** * * * * ** 0;

}
answered by (-146 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>
** **** ****

int main()

{
* * *** ******* * i=0;
* ** **** * * **** **** * ** *** your grade\n");
******* * * ** * * *** ****** **
* ******* *** ***** * * * & i<=100)
* * ** * * * *
***** *** * * *** **** * **
** ***** * ** * * *
** * ** ** * **** if(i>=80 & i<90)
** ** ** * ** * ** *
* ** * ***** ** ** ***** ***
* ** ****** *** *
** * ** ******* ** if(i>=70 & i<80)
* *********** * ***
**** ***** **** ** ** * ***
** **** **** * **
* ** *** *** if(i>=60 & i<70)
* ** * *** *****
*** *** *** ** * * ** *****
* ***** ** * * *** *
*** * * * * if(i<60)
* **** * * **
* * ** ** ** * * * *** **** * *
* * * * *
** ** *** *** * * ** ** * **** **
*** *** *** * ** 0;
* * * ** * ***
answered by (-190 points)
0 like 0 dislike
Hidden content!
* * *** *** ** * * **

int ***

{

int i=0;
** *** ** ** ** * input your grade ** ** * *
* * * ** * * * ** *

if ** * *
* ************* * **
*****

if ** * *
* * **** ** **

else

if ** *
****** * * * ** **
*

if * *
** *** *** ** * * **

else
* ** ** **
* ** 0;

}
answered by (-304 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main()

{
** * * *** * ** * * ****** * **** * *** score;
***** * ** * * *** * * * * * ** *** **** * input your score:");
** ** * ***** * ****** ** * ** * * ** ** * &score);
* * * **** * * ** ****** ** **** (score >= 90)
* **** **** * ***** ** **
** * ** *** * * * ** * ***** * ** * ** **** * * * * ** * * * **** * ***
* * * *** **** * * *
* * * * ** * *** * * ** * * ** ** if (score >= 80)
***** *** **** ** ***** *
* * * * * ** * *** * * * ** * * ** * * **** * *** ** ****
*** * * * * * * **** * * * * *
******* * *** * * * ** * ** * if (score >= 70)
** * * * * * *** * **** **** **
* * **** ** * * * * ** * * ** ** ** ***** * * *** * ** * * * * * * ** *
** * * ** ** ** * * *** *
**** * ** * ** * * * ** * ** * ** if (score >= 60)
*** * * ** * * * * * *** * ** *
**** * * * **** ** **** * * * *** ******** * * ****** ** * * *** * **** * *
* ** ** ** * *** ** * * * **
* * ** **** ** **** * *** * * *

      {
** ** ** * * * ****** *** **** ** * ** **** * **** ****** * * ** *** *

      }
* * * ** * ** ***** * *** * * ** * **** * * * **** ** * ***

      
* * ******** *** *** * * *** ** *** * * ** ** 0;

}
answered by (-214 points)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:104.23.243.164
©2016-2026

Related questions

0 like 0 dislike
40 answers
[Exercise] Coding (C) - asked Sep 29, 2016 in 作業 by Shun-Po (18k points)
ID: 11795 - Available when: Unlimited - Due to: Unlimited
| 6k views
0 like 0 dislike
159 answers
[Exercise] Coding (C) - asked Sep 29, 2016 in 作業 by Shun-Po (18k points)
ID: 11639 - Available when: Unlimited - Due to: Unlimited
| 20.4k views
0 like 0 dislike
26 answers
[Exercise] Coding (C) - asked Nov 3, 2016 in 作業 by Shun-Po (18k points)
ID: 16957 - Available when: Unlimited - Due to: Unlimited
| 4.4k views
0 like 0 dislike
37 answers
[Exercise] Coding (C) - asked Oct 20, 2016 in 作業 by Shun-Po (18k points)
ID: 14579 - Available when: Unlimited - Due to: Unlimited
| 5.5k views
0 like 0 dislike
67 answers
[Exercise] Coding (C) - asked Oct 13, 2016 in 作業 by Shun-Po (18k points)
ID: 13427 - Available when: Unlimited - Due to: Unlimited
| 8.5k views
12,783 questions
183,442 answers
172,219 comments
4,824 users