标签: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++; } } }
标签:else 移动 个数 == while ring str 1.2 ati
原文地址:https://www.cnblogs.com/lcxz/p/9040542.html