2017年3月17日

摘要: 1 public class array { 2 public static int maxSum(int arr[]){ 3 int sum = arr[0]; 4 int b = 0; 5 for(int i=0;i<arr.length;i++){ 6 if(b<=0){ 7 b = arr[ 阅读全文
posted @ 2017-03-17 08:46 GU.YING 阅读(102) 评论(0) 推荐(0) 编辑
 
摘要: 1 public class Colculter { 2 public double sum(double a,double b){ 3 return a+b; 4 } 5 public double substract(double a,double b){ 6 return a-b; 7 } 8 阅读全文
posted @ 2017-03-17 08:37 GU.YING 阅读(105) 评论(0) 推荐(0) 编辑
 
摘要: 1 /** 2 * Created by GuYin on 2017/3/15. 3 */ 4 @RunWith(AndroidJUnit4.class) 5 @LargeTest 6 public class MainTest { 7 private static final String STR 阅读全文
posted @ 2017-03-17 08:28 GU.YING 阅读(100) 评论(0) 推荐(0) 编辑