| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1011 人关注过本帖
标题:[求助]找错:求数组最大值和最小值
取消只看楼主 加入收藏
曲昌文
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2007-5-22
收藏
 问题点数:0 回复次数:2 
[求助]找错:求数组最大值和最小值

//求数组最大值和最小值
using System;

class class1
{
static void Main(string[] args)
{
int i = 0;
int top;
int large, small;
int[] a = new int[50];
string s;
Console.WriteLine("输入数组元素");
while(char.Parse(s = Console.ReadLine()) != '\n') //在这则发生错误,想保留到回车结束的功能。我以前是学C不 //知道C#里行不行?
{
a[i] = int.Parse(s);
i++;
}

top = i;
large = a[0];
small = a[0];
for(i = 1; i < top; i++)
{
if(a[i] > large)
{
large = a[i];
}
if(a[i] < small)
{
small = a[i];
}
}
Console.WriteLine("Largst element in the array is {0}", large);
Console.WriteLine("Smallest element in the array is {0}", small);
Console.ReadLine();
}
}

搜索更多相关主题的帖子: 最大值 
2007-08-01 22:10
曲昌文
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2007-5-22
收藏
得分:0 

using System;

class class1
{
static void Main(string[] args)
{
int i = 0;
int top;
int large, small;
int[] a = new int[50];
string s;
Console.WriteLine("输入数组元素");
while((s = Console.ReadLine()) != "\n") //在这则发生错误,想保留到回车结束的功能。我以前是学C不 //知道C#里行不行?
{
a[i] = int.Parse(s);
i++;
}

top = i;
large = a[0];
small = a[0];
for(i = 1; i < top; i++)
{
if(a[i] > large)
{
large = a[i];
}
if(a[i] < small)
{
small = a[i];
}
}
Console.WriteLine("Largst element in the array is {0}", large);
Console.WriteLine("Smallest element in the array is {0}", small);
Console.ReadLine();
}
}
还是不行


http://blog..cn/bfgl我的博客
2007-08-04 11:30
曲昌文
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2007-5-22
收藏
得分:0 
还有显示转换和类型标志符.Parse(变量名);有什么区别。

http://blog..cn/bfgl我的博客
2007-08-04 11:33
快速回复:[求助]找错:求数组最大值和最小值
数据加载中...
 
   



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

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