经典if-else语句实现 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ const char rank[5] = {'A'…… 题解列表 2023年12月21日 0 点赞 0 评论 133 浏览 评分:0.0
编程入门:成绩测定 摘要:解题思路:注意事项:不要忘记“100”这个分数参考代码:#include<stdio.h>int main(){ int grade; scanf("%d",&grade); …… 题解列表 2024年01月10日 0 点赞 0 评论 189 浏览 评分:0.0
1008:成绩入门评定 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n; if(n>=90) { cout<<…… 题解列表 2024年01月14日 0 点赞 0 评论 442 浏览 评分:0.0
成绩判定(数组和分支的结合) 摘要:#include <stdio.h>int main(){ int cj; scanf("%d",&cj); int x; x=cj/10-6; char…… 题解列表 2024年03月10日 0 点赞 0 评论 535 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ double x; scanf("%lf",&x); if(x>90||x==90){ printf("A"); } if((x>…… 题解列表 2024年08月04日 0 点赞 0 评论 518 浏览 评分:0.0