摘要: 五、编程题(共55分)1.请编程实现:计算并输出下列多项式值:s=1+1/(1+2)+1(1+2+3)+....+1/(1+2+3+..+50) (7分) 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main() 5 { 6 float su 阅读全文