题解 2937: 短信计费

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

筛选

c语言代码解决问题

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

短信计费(java)

摘要:解题思路:注意事项:参考代码:package Sixteen;import java.util.Scanner;public class 短信计费 {    public static void ma……

短信计费(C++)

摘要: #include using namespace std; int main() { int n,a; double sum=……

又是我,这个更好理解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; scanf("%d",&n); int a[n]; double price=0.1; dou……

短信计费C语言解答

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; int i; for(i=0;i<n;i++)……

不懂可以问(不过其实本人很垃圾)

摘要:解题思路:输入的信息怎么才能与70产生联系注意事项:当n==70和n!=70时参考代码:#include<stdio.h>int f(int n)//把70与n的关系扯清了{ if(n%70==0) ……