Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
52688 wangwei 计算书费 C++ 通过 0 MS 252 KB 501 2024-10-12 12:42:54

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main( ) { double a[10] = {28.9,32.7,45.6,78,35,86.2,27.8,43,56,65}; int n; //购买每本书的数量 double total=0; //总费用 for(int i=0;i<10;i++) { cin>>n; //输入i种书的个数 //scanf("%d",&n); total += n * a[i]; //累加计算总费用 } cout<<fixed<<setprecision(1)<<total; //printf("%.1lf",total); return 0; }


测评信息: