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

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

筛选

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

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

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

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

用赫夫曼树写

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){    int a;    cin >> a;    if(a >= 70)    {   ……

so easy!!!!!!成绩评定

摘要:解题思路:if比较难写,switch语句简洁点注意事项:break 要加上否则就执行下一句了,输出用putchar;先前我用的是printf一直不对,换上putchar就可以了参考代码:#includ……