2
/**
Write a program in C# language to perform the following operation:

b. Finding greatest of n numbers

**/
using System;
using System.Linq;


class Greatest
{
    public static void Main(String[] args)
    {   
        //get the number of elements
        Console.WriteLine("Enter the number of elements");
        int n;
        n=Convert.ToInt32(Console.ReadLine());
        int[] array1 = new int[n];         
        //accept the elements
        for(int i=0; i<n; i++)
        {
            Console.WriteLine("Enter element no:",i+1);
            array1[i]=Convert.ToInt32(Console.ReadLine());
        }
        //Greatest
        int max=array1.Max();
        Console.WriteLine("The max is ", max);

        Console.Read();
    }
}

プログラムは変数の値を出力しません。理由がわかりません??

サンプル出力は

 Enter the number of elements
3
Enter element no:
2
Enter element no:
3
Enter element no:
2
The max is 

変数からの出力がないことに注意してください。

ありがとう

4

3 に答える 3

13

format itemがありません。

変化する...

Console.WriteLine("The max is ", max);

に...

Console.WriteLine("The max is {0}", max);
于 2013-05-07T12:53:15.823 に答える
4
Console.WriteLine("The max is " + max);

動作します。

于 2013-05-07T12:54:53.410 に答える
1

これも必要かもしれません:

Console.WriteLine("Enter element no. {0}:", i+1);
于 2013-05-07T13:05:41.363 に答える