测试一个简单的方法-软件自动化测试基础
测试一个简单的方法public class cmp { static public int Largest(int[] list) { int index, max = Int32.MaxValue; for (index = 0; index < list.Length-1; index++) { if (list[index] > max) { max = list[index]; } } return max; } }
282KB
文件大小:
评论区