题解 1216: 成绩转换

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

筛选

成绩转换 (C语言代码)

摘要:解题思路: 注意事项: 参考代码: /* 90~100为A;  80~89为B;  70~79为C;  60~69为D;  0~59为E; */ #include <stdio.h>……

题目 1216: 成绩转换题解

摘要:参考代码:#include<iostream> using namespace std; int main(){     int score;     while(cin>>score){ ……

成绩转换(JAVA)

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

编写题解 1216: 成绩转换

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

成绩转换 (C++代码)

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

成绩转换 (C语言代码)

摘要:解题思路:用string数组存储字符串注意事项:参考代码:#include <iostream>#include <deque>#include <algorithm>#include <numeri……

比较复杂,不建议参考

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

编写题解 1216: 成绩转换

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