题解 3007: 收费

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

筛选

编写题解 3007: 收费

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {   double sum;   double i, j;   scanf("%lf", &i); ……

不懂可评论

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main {     public static void main(String[] ……

编写题解 3007: 收费

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

不懂可评论

摘要:解题思路:注意事项:参考代码:luggage=float(input()) if luggage<=20:     print("%.2f"%(luggage*1.68)) else:    ……

收费--java语言

摘要:解题思路:注意事项:使用double数据类型参考代码:import java.util.Scanner; public class Main { public static void mai……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double t; scanf("%lf",&t); if (t<=20){ printf("%.2lf",……

收费(c语言)

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