题解 1008: [编程入门]成绩评定

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

筛选

[编程入门]成绩评定

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x; scanf("%d", &x); if (x >= 90) printf("A"); else……

C语言if选择问题

摘要:解题思路:以第一个举例假如a它小于9就跳过下面的则会继续向下选择注意事项:参考代码:#include<stdio.h>void main(){     int a;     scanf("%d",&a……

[编程入门]成绩评定

摘要:一、解题思路:switch语句C参考代码:#include <stdio.h> int main() { int s; scanf("%d", &s); switch (s / 10……

[编程入门]成绩评定

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){    scanf("%d",&n);    if……