码迷,mamicode.com
首页 > 编程语言 > 详细

简单算法1

时间:2018-05-30 10:51:25      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:str   void   sort   bre   sys   div   class   array   ati   

public static void main(String[] args) {
		int a[] = new int[]{2,4,6,8,3};
		Arrays.sort(a); //2 3 4 6 8
		int b = 12;
		int j = a.length - 1;
		for (int i = 0; i <= j; ) {
			if (a[i] == b) {
				System.out.println(a[i]);
				break;
			}
			if (a[j-1] == b) {
				System.out.println(a[j-1]);
				break;
			}
			if (a[i] + a[j] == b) {
				System.out.println(a[i]+"和"+a[j]);
				break;
			}
			if (a[i]+a[j] < b) {
				i++;
				continue;
			}
			if (a[i]+a[j] > b) {
				j--;
				continue;
			}
			
		}		    
}

  

简单算法1

标签:str   void   sort   bre   sys   div   class   array   ati   

原文地址:https://www.cnblogs.com/fenghua/p/9109125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!