题解 1954: 话费计算

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

筛选

1954 666cyuyan C语言

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

话费计算的解题方法

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

简单代码易理解

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

简单输出易懂花费计算

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

话费计算Java超简单

摘要:解题思路:直接多少分中乘一下0.4就好了,他自己会加小数的注意事项:不要想麻烦了参考代码:package com.itheima;import java.util.Scanner;public cla……

1954: 话费计算

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

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

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

编写题解 1954: 话费计算

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

1954: 话费计算

摘要:解题思路:注意事项:参考代码:a = int(input())s = 50 + a*0.4print("{:.1f}".format(s))……