2824: 求出e的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double abb(int a){ if(a==1||a==0) return 1; else return …… 题解列表 2024年10月22日 0 点赞 0 评论 83 浏览 评分:0.0
题解 2824: 求出e的值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double n,e=1,num=0; cin…… 题解列表 2024年01月19日 0 点赞 0 评论 58 浏览 评分:0.0
求出e的值(byd,小心点 存放n!的数要用double类型) 摘要:参考代码: ```c #include int main() { int n; scanf("%d",&n); double e=1,a=1;//a是用来存放n!的,记得用浮点类型…… 题解列表 2023年09月13日 0 点赞 0 评论 119 浏览 评分:0.0
麻瓜方法 教你如何求e(正常人思维=_=||) 摘要:解题思路: 根据题目一步一步写就可以了,下面请欣赏我的高质量答案=_=||注意事项: 像我这样写就要注意初始o值的变化参考代码:#include<stdio.h>int m…… 题解列表 2023年01月08日 0 点赞 0 评论 297 浏览 评分:9.0
求e的值简单方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; double e=1,t=1; scanf("%d",&n); for…… 题解列表 2023年01月06日 0 点赞 0 评论 130 浏览 评分:0.0
求e的值,通俗易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n; double sum=1,t=1; scanf("%d",&n); f…… 题解列表 2022年11月08日 0 点赞 2 评论 555 浏览 评分:9.9