题解 2824: 求出e的值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

求e的值,通俗易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,n;    double sum=1,t=1;    scanf("%d",&n);    f……

麻瓜方法 教你如何求e(正常人思维=_=||)

摘要:解题思路:        根据题目一步一步写就可以了,下面请欣赏我的高质量答案=_=||注意事项:        像我这样写就要注意初始o值的变化参考代码:#include<stdio.h>int m……

求e的值简单方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,i;    double e=1,t=1;    scanf("%d",&n);    for……

2824: 求出e的值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>double abb(int a){    if(a==1||a==0)    return 1;    else    return ……

题解 2824: 求出e的值

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double n,e=1,num=0;    cin……