C++编程设计一个程序,输入两个整数,计算并输出两个整数的乘积和之差。

设计一个程序,输入两个整数,计算并输出两个整数的乘积和之差。书上就怎么写的,老师让做。3Q。--------------------Configuration:01-Wi... 设计一个程序,输入两个整数,计算并输出两个整数的乘积和之差。
书上就怎么写的,老师让做。3Q。
--------------------Configuration: 01 - Win32 Debug--------------------
Compiling...
3.cpp
d:\c++\01\3.cpp(3) : error C2065: 'scanf' : undeclared identifier
d:\c++\01\3.cpp(6) : error C2065: 'printf' : undeclared identifier
d:\c++\01\3.cpp(6) : error C2146: syntax error : missing ')' before identifier 'c'
d:\c++\01\3.cpp(6) : error C2059: syntax error : ')'
d:\c++\01\3.cpp(7) : warning C4508: 'main' : function should return a value; 'void' return type assumed
执行 cl.exe 时出错.

01.exe - 1 error(s), 0 warning(s)
不能用啊,老兄,不过,还 是谢谢你,因为你花时间去替我想了,真的很不容易。
展开
 我来答
Davidjava
2007-09-09 · 超过38用户采纳过TA的回答
知道答主
回答量:236
采纳率:0%
帮助的人:0
展开全部
楼主不能只照抄楼上的代码,楼上的只是算法. ^_^
一下的你就可照抄 lol
下次有问题先想想,问问老师/同学...

/*
Name: Nub
Copyright: Mine >:D
Author: Sniper
Date: 08/09/07 22:26
Description: Good Stuff
*/

#include <iostream>
using namespace std;

int difference(int X,int Y);

int main()
{
int inputX,inputY,Ans;
cout << "Please input the first number:"; //X输入
cin >> inputX;
cout << "Please input the second number:"; //Y输入
cin >> inputY;
cout << "\nThe product of these two numbers is:" << (inputX * inputY) << "\n"; //积
cout << "The difference of these two numbers is:" << (inputX>=inputY?inputX-inputY:inputY-inputX) << "\n"; //差
system("pause");
return 0;
}
zhu1982192
2007-09-08
知道答主
回答量:24
采纳率:0%
帮助的人:0
展开全部
main()
{int a,b,c,d;
scanf("%d%d",&a,&b);
c=a*b;
d=a-b;
printf("%d,%d\n"c,d);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式