a=num2;
b=numl:
}
else
{
a=numl;
b=num2;
)
while(【1】)
{
t= 【2】
a=b;
b=t:
}
printf(“greatest common divisor:
%d\n",a);
printf("least common multiple:
%d\n", 【3】;
}
二、程序改错题
下列给定程序中函数proc的功能是:取出长整型变量s中偶数位上的数,依次构成一个新数放在t中。例如,当s中的数为l23456789时,t中的数为2468。请修改程序中的错误,使它能得出正确的结果。
注意:不要改动main()函数,不得增行或删行,也不得更改程序的结构。
试题程序:
#include
#include
#include
//****found****
void proc(long S,long t)
{long sl=10;
s/=10;
*t=s%10;
//****found****
while(s { s=s/l00;
*t=s%10*sl+*t;
sl=sl*10;
}
)
void main()
{long S,t;
system("CLS"):