亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

關于ACM問題

關于ACM問題

C
qq_新生_10 2018-02-15 12:30:49
問題如下:Each course grade is one of the following five letters: A, B, C, D, and F. (Note that there is no grade E.) The grade A indicates superior achievement , whereas F stands for failure. In order to calculate the GPA, the letter grades A, B, C, D, and F are assigned the following grade points, respectively: 4, 3, 2, 1, and 0.? ? ?InputThe input file will contain data for one or more test cases, one test case per line. On each line there will be one or more upper case letters, separated by blank spaces.? ? ?OutputEach line of input will result in exactly one line of output. If all upper case letters on a particular line of input came from the set {A, B, C, D, F} then the output will consist of the GPA, displayed with a precision of two decimal places. Otherwise, the message "Unknown letter grade in input" will be printed.? ? ?Sample InputA B C D FB F F C C AD C E F? ? ?Sample Output2.001.83Unknown letter grade in input代碼如下: ? ?#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char ? ? a[1000]; float ? ?sum; int ? ? ?count,flag; while(gets(a)) ? { flag=1; count=sum=0; for(int i=0;i<strlen(a);i+=2)? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ?if(a[i]=='E')? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? flag=0;? ? ? ? ? ? ? ? ? ? ? ? break;? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ?else? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? if(a[i]=='A')? ? ? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? sum+=4;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? count++;? ? ? ? ? ? ? ? ? ? ? ? ? ?}?? ? ? ? ? ? ? ? ? ? else if(a[i]=='B')? ? ? ? ? ? ? ? ? ? ? ? ? ?{? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?sum+=3;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?count++;? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ?else if(a[i]=='C')? ? ? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?sum+=2;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?count++;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?}? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? else if(a[i]=='D')? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?sum+=1;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?count++;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?else if(a[i]=='F')? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?{? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? count++;? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?}? ? ? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?if(flag==1)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? printf("%.2f\n",sum/count);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?else? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?printf("Unknown letter grade in input\n");? ? ? ? ? }? ? ? ? ? system("pause");? ? ? ? ? ?return 0;}在編譯軟件上測試時對的,但提交上去確實WA。不知道錯在哪,求指教
查看完整描述

目前暫無任何回答

  • 0 回答
  • 0 關注
  • 1083 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號