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

1.2、和一定时找数组中的两个数(2)

时间:2018-05-15 14:00:35      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:else   移动   个数   ==   while   ring   str   1.2   ati   

题目同1、和一定时找数组中的两个数

程序差别:此次用三个if语句进行指针的移动。

代码:

public class one2 
{
    
    public static void main(String[] args) 
{
    
    int[] nums = {1,2,3,4,5,6,7,8,9};
    int target = 10;
    int a=0;
    int b=1;
    while (a<b)
        if (a+b==target)
           { 
            System.out.println("There have"+nums[a]+"and"+nums[b]+"="+target);
            a++;
           }
        else
            if(a+b<target)
            {
                b++;
            }
}
}

 

1.2、和一定时找数组中的两个数(2)

标签:else   移动   个数   ==   while   ring   str   1.2   ati   

原文地址:https://www.cnblogs.com/lcxz/p/9040542.html

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