第一节 练习15
程序员文章站
2022-04-04 11:10:27
...
#include<iostream>
#include<iomanip>
#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
int main()
{
int n,p;
float x,y,s,t=0;
cout << "输入:";
cin >> n;
for(int i=1;i<=n;i++){
cin >> x >> y >> p;
s = sqrt(x*x + y*y);
t += p * 1.5 + 2 * (s *1.0) /50;
}
cout << ceil(t);
return 0;
}
//cout << "输入:";
结果:
上一篇: 第一节 练习16
下一篇: [leetcode]78. 子集