Please how can i get the below code to print two,three and five | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Please how can i get the below code to print two,three and five

public class Program { public static void main(String[] args) { int i=1; String [] one={"one","two"}; String [] two={"three","four"}; String [] three={"five","six"}; System.out.println(one[i]); if(i>=one.length-1){ i=0; System .out.println (two[i]); }else if(i>=two.length -1){ System .out.println (three[i]); }else{i++;} } }

18th Jun 2020, 6:20 PM
Musa Yushau Abu
Musa Yushau Abu - avatar
1 Answer
+ 4
Musa Yushau Abu You can do like this. int i = 1; String [] one = {"one","two"}; String [] two = {"three","four"}; String [] three = {"five","six"}; System.out.println(one[i]); if(i >= two.length - 1) { i = 0; System.out.println (two[i]); } i = 1; if(i >= three.length - 1) { i = 0; System.out.println (three[i]); } But you can simply get like this:- System.out.println (one[1]); System.out.println (two[0]); System.out.println (three[0]);
18th Jun 2020, 7:33 PM
A͢J
A͢J - avatar