题解 2835: 计算书费

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

筛选

python 2835: 计算书费

摘要:```python prices = [28.9,32.7,45.6,78,35,86.2,27.8,43,56,65] num = list(map(int,input().strip().sp……

2835: 计算书费

摘要:参考代码:arr = map(int, input().split()) price = [28.9, 32.7, 45.6, 78, 35, 86.2, 27.8, 43, 56, 65] pr……

编写题解 2835: 计算书费

摘要:参考代码:public static void main(String args[]) { Scanner sc=new Scanner(System.in); double []arr=……

题解 2835: 计算书费

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

计算书费写法

摘要:解题思路:注意事项:参考代码:ls1 = list(map(int,input().split()))ls2 = [28.9,32.7,45.6,78,35,86.2,27.8,43,56,65]su……

2835: 计算书费

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

编写题解 2835: 计算书费

摘要:解题思路:注意事项:参考代码:price = (28.9, 32.7, 45.6, 78, 35, 86.2, 27.8, 43, 56, 65)quantity = tuple(map(int, i……

编写题解 2835: 计算书费

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