文章

67

粉丝

207

获赞

29

访问

36.5k

头像
01字符串 题解:19天!希望上机4道题能做出3道
P1479 厦门大学机试题
发布于2024年3月8日 23:51
阅读数 637

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
using namespace std;


int main(){

	int n;
	cin >>n;
int a[10005];
a[1]=1;
a[2]=2;
for(int i=3;i<=n;i++)
	a[i]=(a[i-1]+a[i-2])%2333333;
cout <<a[n]<<endl;
	//system("pause");
	return 0;

}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发