题解 2791: 计算邮资

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

筛选

2791: 计算邮资

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<iomanip> using namespace std; int mai……

python方法解决

摘要:解题思路:注意事项:参考代码:import mathl = input().split()s = 0if l[1] == &#39;y&#39;:    s = 5a = int(l[0])if a ……

题解 2791: 计算邮资

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

好理解的答案,两个方法

摘要:方法一:解题思路如图所示方法二:直接看代码嘛参考代码://方法一:#include<stdio.h>#include<math.h>int main ( ){ &n……

2791: 计算邮资

摘要:解题思路:注意事项:参考代码:a, b = input().strip().split()a = int(a) ; b = str(b)    # 这里的b转换类型只是为了增加程序可读性,可以不用转换……

C语言简便易懂

摘要:解题思路:思路很简单注意事项:参考代码:#includeint main(){     int n,sum;     char ji;     scanf("%d %c",&n,&ji);     i……

2791: 计算邮资

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

编写题解 2791: 计算邮资

摘要:解题思路:先设定基本费用为8元,超重费用初始值为0元,总费用初始值为0元。如果重量不超过1000克,则总费用即为基本费用;如果超过1000克,则计算超重部分的费用,每500克加收4元,不足500克的部……

计算邮资(一般方法)

摘要:解题思路:主要利用一个向上取整函数m=ceil(),求不小于m的最大整数。补充:floor()为向下取整函数。注意事项:scanf,整型和字符型之间要有空格,要加一个头文件#include <math……