题解 2835: 计算书费

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

筛选

简单明了计算书费

摘要:解题思路:看代码铁子注意事项:参考代码:a = [28.9,32.7,45.6,78,35,86.2,27.8,43,56,65]          #每本书的单价b = list(map(int,i……

计算书费feifeifei

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

编写题解 2835: 计算书费

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

2835: 计算书费

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    double arr[100],sum=0,brr[100];    brr[0]=28.9;    br……

优质题解,回归真神的初始途径

摘要:解题思路:利用列表[]的有序性和list函数的有序性,可以一一对应注意事项:参考代码:# 图书价格列表prices = [    28.9,  # 计算概论    32.7,  # 数据结构与算法  ……

计算书费(C语言代码)

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

2835: 计算书费

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