求问C#中利用IF语句(不能使用ELSE)写一段三数比较大小并且赋值的程序。

情况如下。用户已经输入了三个int(是三个人的年龄),要通过if语句比较三年龄大小,并将年级最大最小的人以及其年龄保存下来,要用到stringoldest_person=... 情况如下。
用户已经输入了三个int(是三个人的年龄),要通过if语句比较三年龄大小,并将年级最大最小的人以及其年龄保存下来,要用到
string oldest_person = “”;
string youngest_person = “”;
int oldest_age = 0, youngest_age = 0;
求解该程序要如何写。
是Console的程序。
展开
 我来答
longmoxxx
2013-04-08
知道答主
回答量:19
采纳率:0%
帮助的人:15.4万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
show();
}
public static void show()
{
string oldest_person = "";
string youngest_person = "";
int oldest_age = 0;
int youngest_age = 0;
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
int c = Convert.ToInt32(Console.ReadLine());
oldest_age = b;
if (a>b)
{
oldest_age = a;
}
if (oldest_age<c)
{
oldest_age = c;
}
youngest_age = b;
if (a<b)
{
youngest_age = a;
}
if (youngest_age > c)
{
youngest_age = c;
}
Console.WriteLine(oldest_age.ToString());
Console.WriteLine(youngest_age.ToString());
}
}
}
追问
有几个问题:
1。为什么不能在main method里运行这个程序?
2。
string oldest_person = "";
string youngest_person = "";
可否解释一下string
3。Convert.ToInt是否就是int.Parse?
追答
如果你要用oldest_person 这个可以用结构体。struct person{string name;int age;}。Convert.ToInt32将输入转换成int类型。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式