#include<stdio.h>
#include<conio.h>
int t=8;
int dok(int);
int doky(int);
int main()
{
int clrscr();
int x,y;
int s=2;
s*=3;
x=dok(s);
y=doky(s);
printf("%d%d%d",s,y,x);
getch();
return 0;
}
int dok(int a)
{
a+=-5;
t-=4;
return(a+t);
}
int doky(int a)
{
a=1;
t+=a;
return(a+t);
}
解釋以上代碼:665請解釋輸出
我明白爲什麼s=6
,x=1+4=5
(a=6-5=1
,t=8-4=4
)...請告訴我如何y
當屬6
,我以爲y
會1+4=5
( a=1
,t=4
)
謝謝,請幫助我。
謝謝!我忘了增加一個回報聲明,但現在它已被清除。 :) – John 2011-03-31 22:59:16