题解 1216: 成绩转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Manchester-成绩转换-题解(C语言代码)

摘要:#### 一.解题思路: 1. 输入一个整数成绩,使用if语句判断该成绩属于哪一个分数段,然后输出对应的成绩等级,成绩不在0到100间的输出Score is error! 1. 成绩在70到89分……

NICE!简简单单

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int score,grade;while((scanf("%d",&score))!=EOF){ grade……

编写题解 1216: 成绩转换(C语言)

摘要:解题思路:可以将s缩小十倍,然后用switch-case语句,注意加上\n,否则运行答案错误。注意事项:参考代码:#include<stdio.h> int main() { int s; w……

【sor魔法再现】1216: 成绩转换---python史上最短AC代码,只有3行!3行代码能做啥?——lambda表达式,只为算法而生~何必东奔西走,lambda+三元表达式

摘要:解题思路:【sor魔法再现】1216: 成绩转换---python史上最短AC代码,只有3行!3行代码能做啥?——lambda表达式,只为算法而生~何必东奔西走,lambda+三元表达式——1行解千愁……

1216: 成绩转换

摘要:```python l=[] for i in range(4): m=int(input()) l.append(m) for i in l: if i>=90 ……

成绩转换(JAVA)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

编写题解 1216: 成绩转换

摘要:解题思路:注意事项:参考代码:while True:     try:         n=int(input())         if 0<=n<=59:         &nbs

编写题解 1216: 成绩转换

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int n;    while(cin>>n){       ……

成绩转换(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){      int n;      while(~scanf("%d",&n))      {          ……