1008: [编程入门]成绩评定 摘要:#include<stdio.h>int main(){ int i;&a…… 题解列表 2022年05月06日 0 点赞 0 评论 157 浏览 评分:0.0
成绩评定(c++语言) 摘要:解题思路:根据题意if判断注意事项:if语句的应用;参考代码:#include<iostream>usingnamespacestd;intmain(){ &nb…… 题解列表 2022年04月27日 0 点赞 0 评论 517 浏览 评分:8.0
C语言Visual studio写法成绩评定题解{新手向} 摘要:解题思路:用elseif注意事项:因为本人使用的Visualstudio2022版本在VS里scanf是不允许被直接打出需要加个_s答题时删掉_s即可答案以我VS写出来的为主若有错误指出即可elsei…… 题解列表 2022年04月05日 0 点赞 0 评论 536 浏览 评分:0.0
[编程入门]成绩评定的三种方法 摘要:解题思路: 1.先看题目,找出适合的方法,比如这的题目就和条件有关(分数和评级有关),因此可以使用if条件语句,ifelse嵌套,Switch语句来做此题.&am…… 题解列表 2022年04月01日 0 点赞 0 评论 212 浏览 评分:0.0
成绩评定--(if else代码) 摘要:##[编程入门]成绩判定###if选择结构题解```c#includeintmain(){intx;scanf("%d",&x);if(x>=90){printf(&…… 题解列表 2022年03月16日 0 点赞 0 评论 209 浏览 评分:2.0
成绩评定(if循环) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intn;charch,A,B,C,D,E;scanf("%d",&n);i…… 题解列表 2022年03月06日 0 点赞 2 评论 954 浏览 评分:9.9
if的运用比较简单,但是要注意格式 。 摘要:解题思路:if,分级注意事项:if后不加;小括号括起来条件,以防万一,最好加大括号。参考代码:#include<stdio.h>intmain(){ …… 题解列表 2022年03月06日 0 点赞 1 评论 92 浏览 评分:7.3
1008: [编程入门]成绩评定 摘要:解题思路:用switch()语句,正好可以用分数/10的整数值作为case。注意事项:需要做异常处理,保证分数在0-100以内。参考代码:#include <iostream&…… 题解列表 2022年02月20日 0 点赞 1 评论 424 浏览 评分:8.0
c++代码,非常原始 摘要:解题思路:注意事项:参考代码:#includeusingnamespacestd;intmain(){intn;scanf("%d",&n);if(n>=90){pr…… 题解列表 2022年02月09日 0 点赞 0 评论 440 浏览 评分:6.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intx;scanf("%d",&x);if(x>=90)printf…… 题解列表 2022年01月29日 0 点赞 0 评论 104 浏览 评分:0.0