We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#include"stdio.h" int main() { int i=1; float f1=2.0,f2=1.0,sum=0.0,f,a; while(i<21) { f=f1/f2; a=f1+f2; sum+=f; f2=f1; f1=a; i++; } printf("%f\n",sum); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
数列前二十项求和(2/1,3/2,5/3,8/5,13/8..........)
The text was updated successfully, but these errors were encountered: