标题:求指教
只看楼主
于红光521
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2012-10-11
结帖率:75%
已结贴  问题点数:1 回复次数:2 
求指教
using System;
using System.Collections.Generic;
using System.Text;

namespace findmaxmin
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Console.Write("请你输入一些列数");
            string str = Console.ReadLine();
            string[] Array_str = str.Split(',');
            int max = Convert.ToInt32(Array_str [0]);
            int min = Convert.ToInt32(Array_str [0]);
            for (int i = 1; i < str.Length;i++ ) {
                max = max > Convert.ToInt32 (Array_str[i]) ? max : Convert.ToInt32(Array_str[i]);
                min = min < Convert .ToInt32 (Array_str[i]) ? min :Convert .ToInt32(Array_str[i]) ;
            
            }
            System.Console.WriteLine("最大值{0}",max );
            System.Console.WriteLine("最大值{0}", min);

            

        }
    }
}
搜索更多相关主题的帖子: void max 
2012-10-11 20:36
lybh24
Rank: 8Rank: 8
等 级:贵宾
威 望:19
帖 子:120
专家分:701
注 册:2012-9-8
得分:1 
for (int i = 1; i < str.Length;i++ ) 把str换成Array_str ,这个问题有人问过一次。。。

新群:273209143
2012-10-11 22:18
于红光521
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2012-10-11
得分:0 
回复 2楼 lybh24
谢谢你!
2012-10-12 12:36



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




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

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