成绩转换 (C语言代码)
摘要:解题思路:switch用起来挺麻烦的,if代替就行注意事项:参考代码:#include<stdio.h>
int main()
{
int n;
while(scanf("%d",&n)!……
编写题解 1216: 成绩转换(C语言)
摘要:解题思路:可以将s缩小十倍,然后用switch-case语句,注意加上\n,否则运行答案错误。注意事项:参考代码:#include<stdio.h>
int main()
{
int s;
w……
Manchester-成绩转换-题解(C语言代码)
摘要:#### 一.解题思路:
1. 输入一个整数成绩,使用if语句判断该成绩属于哪一个分数段,然后输出对应的成绩等级,成绩不在0到100间的输出Score is error!
1. 成绩在70到89分……
成绩转换 (C语言代码)
摘要:#include<stdio.h>#include<string.h>int main(){ int n; while(scanf("%d",&n)!=EOF) { if(n>100) prin……
成绩转换 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int score; while(scanf("%d",&score)!=EOF) { ……
成绩转换 (C语言代码)
摘要:解题思路:
注意事项:
参考代码:
/*
90~100为A;
80~89为B;
70~79为C;
60~69为D;
0~59为E; */
#include <stdio.h>……
成绩转换-题解(C语言代码)
摘要:```c
#pragma warning(disable:4996)
#include
#include
#include
#include
int main(){
int ……
成绩转换(JAVA)
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args……
比较复杂,不建议参考
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t,n; while(scanf("%d",&t)!=EOF) { n=……