[问题已解决]
我是才接触C的新手,一共才上了4节课,老师就出题了,请高手帮忙看看(如果愿意帮忙改的,请尽量不要改变原来的变量):
--------------------------------------------------------------------------------------
题目是:有下面的C程序,目的是想计算由键盘输入的任意两个整数的积。
/********exl.c********/
#include (stdio.h);
main()
scanf(“%x,%y”,&x,%y)
p=prodct(x,t)
printf(“The product is :”,p)
int prodct(int a ,int b )
int c
c=a*b
return c
请调试上述程序。
---------------------------------------------------------------------------------------------
我的做法是:
#include <stdio.h>
void main()
{
int x,y;
scanf(“%x,%y”,&x,&y);
p=prodct(x,t); /*这个地方P的变量该怎么赋值我就不明白了,还有就是t是不是该改成y*/
printf(“The product is :”,p);
int prodct(int a ,int b );
int c;
c=a*b;
return c
}
[此贴子已经被作者于2006-3-7 11:53:54编辑过]