Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6121 zhuangshuyi 小明养猪的故事 C++ 解答错误 0 0 MS 252 KB 298 2020-08-23 19:53:34

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int t,n,a=1,b=2,c; int yangzhu(int x){ a=1; b=2; if(x==1) cout<<1<<endl; for(int i=2;i<n;i++){ c=b; b=a+b; a=c; } cout<<b<<endl; } int main(){ cin>>t; for(int i=0;i<t;i++){ cin>>n; yangzhu(n); } return 0; }


测评信息: