#21957: 記憶體區段錯誤!


smith990547@gmail.com (吳冠辰)

學校 : 國立臺東大學
編號 : 109519
來源 : [140.127.41.251]
最後登入時間 :
2024-03-28 13:53:32
d639. 企鵝村三兄弟penguin -- jack1 | From: [180.217.115.52] | 發表日期 : 2020-08-04 14:39

為什麼會這樣???

#include<iostream>
int fuction(int t)
{
	if(t<3)
		return 1;
	else
		return (fuction(t-3) + fuction(t-2) + fuction(t-1));
}
using namespace std;
int main()
{
	int x,d;
	cin >> x;
	d = fuction(x-1);
	d = d%10007;
	cout << d << '\n';
}
 
ZeroJudge Forum