成绩——按比例计算最后输出总成绩 摘要:解题思路:注意事项:最后输出为整形参考代码:a,b,c=map(int,input().split())s=a*0.2+b*0.3+c*0.5print(int(s))…… 题解列表 2023年03月18日 0 点赞 0 评论 114 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ &…… 题解列表 2024年11月08日 0 点赞 0 评论 22 浏览 评分:0.0
题解 3004: 成绩 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta,b,c,d;scanf("%d%d%d",&a,&b,&a…… 题解列表 2023年02月27日 0 点赞 0 评论 72 浏览 评分:0.0
按比例计算成绩 摘要:解题思路: 1.注意计算公式 2.考虑输出结果类型提示中输出结果不含小数也就是说输出…… 题解列表 2023年12月02日 0 点赞 0 评论 93 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())print("%d"%(a*0.2+b*0.3+c*0.5))…… 题解列表 2024年11月08日 0 点赞 0 评论 21 浏览 评分:0.0
ikun崩溃代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta,b,c,d;floatA,B,C;scanf("%d%d%d",&…… 题解列表 2023年01月30日 0 点赞 0 评论 62 浏览 评分:0.0
输出格式要是%f型不能是整型,%20就是float型 摘要:解题思路:输出格式要是%f型不能是整型,%20就是float型注意事项:输出单位参考代码:#include<stdio.h>intmain(){intb,c,d;//a=b作业20,c小测…… 题解列表 2022年11月17日 0 点赞 0 评论 180 浏览 评分:8.0
3004: 成绩(c++代码) 摘要:最后的输出结果要是整型才能通过哦!```cpp#includeusingnamespacestd;intmain(){inta,b,c;cin>>a>>b>>c;c…… 题解列表 2023年01月08日 0 点赞 0 评论 225 浏览 评分:8.0
成绩(C代码) 摘要:#includeintmain(){inta,b,c;//a为作业成绩,b为小测成绩,c为期末成绩intgrade;//总成绩scanf("%d%d%d",&a,&…… 题解列表 2024年09月07日 0 点赞 0 评论 44 浏览 评分:9.9
编写题解 3004: 成绩 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ inta,b,c…… 题解列表 2023年12月09日 0 点赞 0 评论 87 浏览 评分:9.9