1104 Sum of Number Segments(二刷)
Posted keep23456
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1104 Sum of Number Segments(二刷)相关的知识,希望对你有一定的参考价值。
英文题目:1104 Sum of Number Segments
中文题目:1049 数列的片段和
1 #include<iostream> 2 using namespace std; 3 4 int main() { 5 int n; 6 double t,sum = 0; 7 cin>>n; 8 for(int i = 0 ; i < n; ++i) { 9 cin>>t; 10 sum += (i+1)*t*(n-i); 11 } 12 printf("%.2f ",sum); 13 return 0; 14 }
以上是关于1104 Sum of Number Segments(二刷)的主要内容,如果未能解决你的问题,请参考以下文章
1104 Sum of Number Segments(二刷)
1104 Sum of Number Segments (20)
1104 Sum of Number Segments (20分)(long double)