首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
新手求教,一道重循环c语言代码题
一重循环程序题:求s的近似值:s=1+1/(2*2)+1/(3*3)+.....+1/(10*10) 请将运算结果存入变量s中。 例如:输入10 输出:s=1.550 输入4 输出:s=1.424 要求结构如下: #include "stdio.h" #include "math.h" #include "stdlib.h" int main() ...
默认分类
| 2023-04-02 12:36 |
阅读 2316 次
|
评论 3 条
新手求教,写了好久都运行失败
默认分类
| 2023-04-02 12:33 |
阅读 235 次
|
评论 0 条
ChinHow的博客
ChinHow
浏览2551次
文章分类
默认分类(2)
文章归档
2023年04月(2)
最新评论
yehuabao
:求详解。为什么是3不是4位小数? 我是小白.
按知战际
:保留3位小数就行了
ChinHow
:#include "stdio.h" #include "math.h" #include...