c++⼀⼀a+b?新手问题

2024-12-25 20:04:00
推荐回答(5个)
回答1:

应该这样写
#include
using namespace std;
int kao(int a,int b)
{
return (a+b);
}
int main()
{
int x=3,y=2;

cout< return 0;
}
你的程序中有三处错误:
1.第六行的;不需要
2.函数kao应该返回int,cout时将结果送到输出缓冲区
3.主函数是int型的,所以也应该有返回值。

回答2:

新建个C#的控制台应用程序
全选,输入如下代码
using System;
using System.Collections.Generic;
using System.Text;

namespace a_b
{
class Program
{
static void Main(string[] args)
{
int a = 0;
int b = 0;
try
{
a = int.Parse(Console.ReadLine());
b = int.Parse(Console.ReadLine());
}
catch {
Console.WriteLine("输入为非数字");
}
Console.WriteLine("a+b = "+(a+b));
Console.Write("请按回车键结束程序...");
Console.Read();
}
}
}
即可完成作业
说明一下
namespace a_b中a_b为项目名称,要改成你的项目名称才行

回答3:

您好,我用的是c++语言:
#include
uisng namespace std;
int main()
{
int a,b,ans=0;
ans=a+b;
cout<return 0;
}
望采纳,谢谢

回答4:

#include
using namespace std;
int kao(int a,int b)
{
return a+b;
}
int main()
{
int x=3,y=2;
cout<}

回答5:

#include
using namespace std;
int c;
int kao(int a,int b)
{
c=a+b;
return c;
}
int main()
{
int x=3,y=2;
cout<return 0;
}