#include <stdio.h> //s=1+2+6/4+10/6+16/10+26/16+.....前30项的和 main() { int i,t; float a=【1】,b=【2】,s=【3】; for(i=1;i<=【4】;i++) { s=【5】; t=【6】; a=【7】; b=t; } printf("%f",s); getchar(); }
#include <stdio.h> //s=1+2+6/4+10/6+16/10+26/16+.....前30项的和 main() { int i,t; float a=2,b=2,s=0; for(i=1;i<=3;i++) { s=s+a/b; t=a; a=a+b; b=t; } printf("%f",s); getchar(); }
标签:10,26,16,30,+.....,填空 From: https://www.cnblogs.com/xkdn/p/17132495.html