㈠ 編寫成績轉換程序,輸入成績等級ABCDE,分別轉換輸出為優秀,良好,中等,及格和不及格,要c語言
#include<stdio.h>
void main() { char str[5][10]={ "優秀","良好","中等","及格","不及格" },str1[20],c;
printf("請輸入成績等級: "); scanf("%s",str1); c=str1[0];
if ( c>='A' && c<='E' ) printf("成績%c: %s\n",c,str[c-'A']);
else printf("無效的成績等級。\n");
}