成绩等级转换-题解(C语言代码) 摘要:解题思路:用While循环 注意事项:参考代码:#include<stdio.h>int main(){ int x; while(scanf("%d",&x)==1) { …… 题解列表 2020年11月27日 0 点赞 0 评论 831 浏览 评分:9.9
成绩等级转换-题解(C++代码)满分题解(真的) 摘要:解题思路:我用最笨的方法我用if来一个加一个的算。(最后一个用else)注意事项:参考代码:#include<iostream>using namespace std;int main(){ int …… 题解列表 2020年12月09日 0 点赞 0 评论 563 浏览 评分:9.9
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cstdlib> #include <iostream> #include <cmath> #includ…… 题解列表 2018年11月15日 7 点赞 0 评论 914 浏览 评分:9.9
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main (){ int t; while(scanf("%d", &t) != EOF) sw…… 题解列表 2024年11月19日 0 点赞 0 评论 202 浏览 评分:9.9