java--study||O.o
摘要:参考代码:import java.util.Scanner;
public class Main
{ public static void main(String[] atgs)
{ ……
3004: 成绩(C++)
摘要:这可能是CCF的NOIP普及组历年来最简单的一道题了,考试时看到这题直接晕倒,这题是不是有坑?这么简单?没错,还真就这么简单,专门来考验你是否会编程。但CCF出来的成绩却令我非常意外,60分!!谷测满……
编写题解 3004: 成绩
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; ……
3004: 成绩(c++代码)
摘要:最后的输出结果要是整型才能通过哦!
```cpp
#include
using namespace std;
int main()
{
int a,b,c;
cin>>a……
输出格式要是%f型不能是整型,%20就是float型
摘要:解题思路:输出格式要是%f型不能是整型,%20就是float型注意事项:输出单位参考代码:#include <stdio.h>int main(){int b,c,d;//a=b作业20,c小测30,……
题解 3004: 成绩
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c, d; scanf("%d %d %d", &a, &b, &c); d = a * 0……