
 AI时代,找源码已成为过去式,纪念我过去的十年0(回)
                        65天前
AI时代,找源码已成为过去式,纪念我过去的十年0(回)
                        65天前 还有人吗2(回)
                        83天前
还有人吗2(回)
                        83天前 会python真的可以为所欲为0(回)
                        563天前
会python真的可以为所欲为0(回)
                        563天前 这里还有人吗2(回)
                        748天前
这里还有人吗2(回)
                        748天前 这里还有人吗0(回)
                        748天前
这里还有人吗0(回)
                        748天前 每天面对着电脑屏幕,敲打键盘。我所面对的并不只是代码,而是一种生活方式。0(回)
                        973天前
每天面对着电脑屏幕,敲打键盘。我所面对的并不只是代码,而是一种生活方式。0(回)
                        973天前#include<iostream>
using namespace std;
int main()
{
    unsigned long long a=1.0,b=1.0,s=0.0;
    cout<<a<<" "<<b<<" ";
    for(int c=3;c<=100;c++)
    {
        s=a+b;
        a=b;
        b=s;
        cout<<c<<"  "<<s<<endl;
    }
    return 0;
}



