请编程计算1+1⼀2+1⼀3+1⼀4+…+1⼀10

2024-12-29 08:21:24
推荐回答(1个)
回答1:

float s = 0;
int i;
for (i = 0; i <= 10; i++) s += 1.0/i;
printf("%d", s);