2021年11月18日 星期四

分數練習

 #include <stdio.h>

#include <stdlib.h>


/* run this program using the console pauser or add your own getch, system("pause") or input loop */


int main(int argc, char *argv[]) 

{

   int score;

   scanf("%d",& score);

   if(score>90)   {    printf("A");   }

   else if(score>80 && score<90)   {    printf("B");   }

   else if(score>70 && score<80)   {    printf("C");   }

   else if(score>60 && score<60)   {    printf("D");   }

   else  {    printf("E");   }

return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...