题解 1954: 话费计算

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

筛选

1954: 话费计算

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() {     int n……

简单代码易理解

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float a,b; scanf("%f",&a); b=50+0.4*a; printf("%.1f",b)……

1954: 话费计算

摘要:无脑输出。#include<iostream> using namespace std; int main() {     double a;     cin >> a;     prin……

题解 1954: 话费计算

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {     int base = 50;     double min;     scanf("%lf……

简单输出易懂花费计算

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a,c; float b; a = 0.4; scanf("%f",&c); b = 50 + 0.……

1954 666cyuyan C语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int m;float n; scanf ("%d",&m); n=50+0.4*m; printf ("%……

话费计算-题解(Python代码)

摘要:题目比较简单,输出的格式需要保存小数点后一位小数 引出可以采用%.1f的方式来输出 需要输入的内容直接放到输出框中也可以,输出的内容为n*0.4+50 输出的时候保持后面没有空格等信息 ```……