题解 1954: 话费计算

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

筛选

题解 1954: 话费计算

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

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;……

编写题解 1954: 话费计算

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

简单输出易懂花费计算

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