标题:关于调试时语句的问题?
取消只看楼主
vcsharp
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2006-11-13
 问题点数:0 回复次数:1 
关于调试时语句的问题?

{
public string name;
public int age;
public float weight;
public Student(string a, int b, float c)
{
name = a;
age = b;
weight = c;
}
}

class Test
{
static void Main(string[] args)
{
ArrayList stuarray = new ArrayList();
string tag;
do
{
Console.Write("Enter the name:");
string tmp_name = Console.ReadLine();
Console.Write("Enter the age:");
int tmp_age = int.Parse(Console.ReadLine());
Console.Write("Enter the weight:");
float tmp_weight = float.Parse(Console.ReadLine());
stuarray.Add(new Student(tmp_name, tmp_age, tmp_weight));
Console.WriteLine("Contuine? (y/n)");
tag =Console.WriteLine();

} while (tag == 'y');

int MaxIndex = 0, Maxage = 0;
int i = 0;

for (i = 0; i < stuarray.Count;i++)
{
if ((Student)stuarray[i].age > Maxage)
{
Maxage = (Student)stuarray[i].age;
MaxIndex = i;
}
}
Console.WriteLine("The Name with Maxage is {0}", (Student)stuarray[MaxIndex].name);


}

}


请问一下后面几句有什么错,调试时老出错!说不包括age ,name 的定义!非常感谢!

搜索更多相关主题的帖子: 语句 调试 
2006-11-16 22:47
vcsharp
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2006-11-13
得分:0 
非常感谢楼上的朋友!
2006-11-17 16:22



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-103475-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.238176 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved