成绩等级转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <iomanip>using namespace std;int main ()…… 题解列表 2018年09月15日 0 点赞 2 评论 506 浏览 评分:0.0
成绩等级转换 (C语言代码) 摘要:解题思路:使用switch语句实现,很简单。注意不是0-100,要输出成绩错误哦。参考代码:#include <stdio.h> int main() { int score; char…… 题解列表 2018年09月11日 0 点赞 0 评论 1179 浏览 评分:6.0
成绩等级转换 (C语言代码)switch 条件选择 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int mark; while((scanf("%d",&mark))!=EOF) { switch(mark/…… 题解列表 2018年08月18日 0 点赞 0 评论 1475 浏览 评分:0.0
成绩等级转换 (C语言代码)P.S.另一个题解是C++描述 摘要:解题思路:很简单的一道题,只需用if和else if就可以咯。注意事项:例如:表示判断t在90~100,须写为if(t>=90&&t<=100),不能直接写成if(90<=t<=100),系统会自动忽…… 题解列表 2018年08月17日 4 点赞 0 评论 929 浏览 评分:0.0