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

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

筛选

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

摘要:解题思路:switch判断注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a;    cin>>a;  ……

第二种方法解决此题

摘要:解题思路:第一种采用if                  else if                 else注意事项:q嵌套过程的逻辑判断参考代码

[编程入门]成绩评定-题解(C语言代码)

摘要:解题思路:利用if语句解决,是个笨方法注意事项:注意输出为字符型并且在公式中赋值也是字符参考代码:#include<stdio.h>  void main()  {      int n,m;//定义……

c++代码,非常原始

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n; scanf("%d",&n); if(n>=90) { printf("A……

if解题,正常解法

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