2004 成绩转换
Posted mered1th
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2004 成绩转换相关的知识,希望对你有一定的参考价值。
#include<cstdio> #include<iostream> using namespace std; int main() { int score; while (cin >> score) { if (score > 100 || score < 0) { printf("Score is error! "); } else if (score >= 90) { printf("A "); } else if (score >= 80) { printf("B "); } else if (score >= 70) { printf("C "); } else if (score >= 60) { printf("D "); } else { printf("E "); } } return 0; }
以上是关于2004 成绩转换的主要内容,如果未能解决你的问题,请参考以下文章