c语言学习路程——前n项求和
摘要:
1 #include <stdio.h> 2 3 int main() { 4 int n; 5 double dividend, divisor; 6 double sum = 0.0; 7 int i; 8 double t; 9 10 scanf_s("%d", &n); 11 12 divi 阅读全文
posted @ 2021-01-09 16:01 SNOWSD 阅读(701) 评论(0) 推荐(0) 编辑