用C#语言写程序
答案:3 悬赏:20 手机版
解决时间 2021-07-17 02:30
- 提问者网友:临风不自傲
- 2021-07-16 08:08
定义一个方法,计算两个整数的和与差。其中和通过返回值返回;差通过输出参数返回。编程验证该方法
最佳答案
- 五星知识达人网友:街头电车
- 2021-07-16 09:45
using System;
namespace myProgram
{
class Program
{
static void Main(string[] args)
{ int result;
Console.WriteLine("请输入两个数字用空格分开\n");
string iString=Console.ReadLine();
string[] iStrings=iString.Split(' ');
int m=int.Parse(iStrings[0]);
int n=int.Parse(iStrings[1]);
result=minus(m,n);
Console.WriteLine("两个数的差是 :{0}",result);
Console.WriteLine("两个数的和是:{0}",add(m,n));
}
static int minus(int a, int b)
{ int n;
n=a-b;
return n;
}
static int add(int a, int b)
{
return a+b;
}
}
} 我还没测试 你测试之后有错的回复我
全部回答
- 1楼网友:深街酒徒
- 2021-07-16 10:42
public int bb(int a ,int b)
{
int n
n=a-b;
return n;
}
public int aa(int a,int b)
{
return a+b;
}
- 2楼网友:梦中风几里
- 2021-07-16 10:31
int cal(int a , int b, int out subResult)
{
subResult = a - b;
return a + b;
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯