#include <stdio.h>
main(){
scanf("%x,%y",&x,&y)
p=prodct(x,y)
printf("The Product is:",p)
int prodct(int a,int b)
int c
c=a*b
return c
1、修改程序中的错误,跟帖发表你修改后的程序。
2、将修改后的程序编译,如果有错误提示请发布提示信息。
3、用下列6组数据进行测试用那几组比较好?为什么?
1、0,0
2、0,99
3、33000,20
4、20,50
5、-5,-2
6、+5,2
4、要测试出这个程序的所有错误,你认为应该用那几组进行测试?为什么?