题解 2835: 计算书费

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

筛选

2835: 计算书费

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

2025/8/7刷题记录

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

普通解题方法

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

java数组的两种声明

摘要:参考代码:import java.util.Scanner; public class Main {     public static void main(String[] args) {  ……

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: 计算书费

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

题解 2835: 计算书费

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

2835: 计算书费

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