| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 591 人关注过本帖
标题:关于调试时语句的问题?
取消只看楼主 加入收藏
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
快速回复:关于调试时语句的问题?
数据加载中...
 
   



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

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