这题目标签是不是要加上因为数组

B2088 计算书费

sc_lui95 @ 2024-09-21 15:19:41

这题目不用数组根据无法运用循环解决,直接顺序结构编程。


by luogu_00 @ 2024-11-24 19:28:40

是的,因为这道题要存储 10 个数据,当然要用数组,和 B2087 一样应该加个数组标签。

#include<bits/stdc++.h>
using namespace std;
int a[10];
float p[10]={28.9,32.7,45.6,78,35,86.2,27.8,43,56,65};
int main(){
    float ans=0;
    for(int i=0;i<10;i++){
        cin>>a[i];
        ans+=a[i]*p[i];
    }
    printf("%.1f",ans);
    return 0;
}

|