求问C#中利用IF语句(不能使用ELSE)写一段三数比较大小并且赋值的程序。
情况如下。用户已经输入了三个int(是三个人的年龄),要通过if语句比较三年龄大小,并将年级最大最小的人以及其年龄保存下来,要用到stringoldest_person=...
情况如下。
用户已经输入了三个int(是三个人的年龄),要通过if语句比较三年龄大小,并将年级最大最小的人以及其年龄保存下来,要用到
string oldest_person = “”;
string youngest_person = “”;
int oldest_age = 0, youngest_age = 0;
求解该程序要如何写。
是Console的程序。 展开
用户已经输入了三个int(是三个人的年龄),要通过if语句比较三年龄大小,并将年级最大最小的人以及其年龄保存下来,要用到
string oldest_person = “”;
string youngest_person = “”;
int oldest_age = 0, youngest_age = 0;
求解该程序要如何写。
是Console的程序。 展开
1个回答
展开全部
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类型。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询