1
我有這個程序,我試圖輸出n的值,但我沒有得到任何顯示。程序符合但沒有輸出。使用C編程錯誤
#include <stdio.h>
int rec(int x, int y)
{
static int count = 0;
if(x==0)
return count;
count++;
if(x > y)
rec(x - y, y);
else
rec(x,y-x);
return count;
}
main(){
int i=0, j=2, n;
n = rec(i,j);
printf("%d", n);
}
需要N的值作爲輸出,程序不會顯示任何東西。
當我運行它輸出'0'。你確定這是你實際運行的代碼嗎? –