将最大数组值写入控制台 window
Writing max array value to console window
我确定我遗漏了一些愚蠢的东西。我要打印消息
控制台 window 并在同一行中显示最大数组值。
当我 运行 没有控制台消息的代码时它 运行 是完美的但是当我 运行
带有消息的代码,它只显示消息而没有最大值。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Arrays
{
class Program
{
static void Main(string[] args)
{
int[] newArray = new int[6];
newArray[0] = 0;
newArray[1] = 1;
newArray[2] = 2;
newArray[3] = 49;
newArray[4] = 3;
newArray[5] = 82;
Console.Write("The highest number in the array is: ", newArray.Max());
Console.ReadLine();
}
}
}
我刚开始掌握数组的窍门,但找不到解决上述问题的方法。
一种方法是连接字符串:
Console.Write("The highest number in the array is: " + newArray.Max());
另一种方法是通过复合格式字符串和参数:
Console.Write("The highest number in the array is: {0} ", newArray.Max());
最后,如果你有 Visual Studio 2015,你可以进行字符串插值:
Console.WriteLine($"The highest number in the array is:{newArray.Max()}")
试试这个
Console.Write("The highest number in the array is: {0} ", newArray.Max());
您可以在此处阅读有关 string.format 的更多信息:Why use String.Format?
您还可以使用名为 string interpolation
的新 C# 6.0 功能
Console.Write($"The highest number in the array is: {newArray.Max()}");
我确定我遗漏了一些愚蠢的东西。我要打印消息 控制台 window 并在同一行中显示最大数组值。
当我 运行 没有控制台消息的代码时它 运行 是完美的但是当我 运行 带有消息的代码,它只显示消息而没有最大值。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Arrays
{
class Program
{
static void Main(string[] args)
{
int[] newArray = new int[6];
newArray[0] = 0;
newArray[1] = 1;
newArray[2] = 2;
newArray[3] = 49;
newArray[4] = 3;
newArray[5] = 82;
Console.Write("The highest number in the array is: ", newArray.Max());
Console.ReadLine();
}
}
}
我刚开始掌握数组的窍门,但找不到解决上述问题的方法。
一种方法是连接字符串:
Console.Write("The highest number in the array is: " + newArray.Max());
另一种方法是通过复合格式字符串和参数:
Console.Write("The highest number in the array is: {0} ", newArray.Max());
最后,如果你有 Visual Studio 2015,你可以进行字符串插值:
Console.WriteLine($"The highest number in the array is:{newArray.Max()}")
试试这个
Console.Write("The highest number in the array is: {0} ", newArray.Max());
您可以在此处阅读有关 string.format 的更多信息:Why use String.Format?
您还可以使用名为 string interpolation
的新 C# 6.0 功能Console.Write($"The highest number in the array is: {newArray.Max()}");