标题:C语言新手进!C语言学习
取消只看楼主
lanhu
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-11-3
 问题点数:0 回复次数:1 
C语言新手进!C语言学习

#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、要测试出这个程序的所有错误,你认为应该用那几组进行测试?为什么?

搜索更多相关主题的帖子: C语言 int The 
2007-11-03 13:12
lanhu
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-11-3
得分:0 

我当然知道了,这本来就是写给大家让大家改的!至于后面的就要讨论了
这是我自己改的
#include <sdtio.h>
int prodct(int a,int b);
int main(){
int x,y,p;
scanf("%d,%d",&x,&y);
p=prodct(x,y);
printf("The Product is: %d",p);
}
int prodct(int a,int b){
int c;
c=a*b;
return c;
}

2007-11-03 13:38



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-183134-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016493 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved