C#语言:输入三个数,利用IF选择语句找出其中最大的数,并输出结果
C#语言:输入三个数,利用IF选择语句找出其中最大的数,并输出结果
日期:2015-06-08 00:14:17 人气:1
using System;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { int max = int.MinValue; int min = int.MaxValue; for (int i = 0; i max) max = x; if (x < m