测试一个简单的方法-软件自动化测试基础
                    测试一个简单的方法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
                                
                                
                                
                            
评论区