#include <stdio.h> void main() { int n,i=1; float s=0; scanf("%d",&n); while(i<100) { n=n/i; s=s+n; n=-n; i++; } printf("%f",s); 第一题
}
[此贴子已经被作者于2004-12-27 23:58:01编辑过]