题解 2835: 计算书费

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

筛选

编写题解 2835: 计算书费

摘要:解题思路:注意事项:参考代码:price=[28.9,32.7,45.6,78,35,86.2,27.8,43,56,65] #将价格储存进数组 nums=list(map(int,input().……

计算书费(简简单单)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double a[10] = { 2……

给用Java的开一下荒土

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

计算书费(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){  int i,arr[10];  double ch[10]={28.9,32.7,45.6,78,35,86.……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    float consume=0.0,a[11] = {28.9,32.7,45.6,78.0,35.0,8……

2835: 计算书费

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;  double a[10]= { 28.9,32.7,45.6,78,35,86……

计算书费feifeifei

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;double a[10]= {28.9,32.7,45.6,78,35,86.2,……

编写题解 2835: 计算书费

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a[10];    int i;    float sum=0.0;        for(i=0……