Unable to write this code properly in eclispe | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Unable to write this code properly in eclispe

So I have a small project which needs me to make an array with size of 20 and take 20 inputs and then check if all of them are equal using "for" loop. If it is equal it prints equal else it prints broken. I will link the code. Try and run it in and tell me what to change to make it work. Since it's 20 numbers we cant manually check them all so I used the "for(i=0;i<=19;i++)" loop but it isnt working like i intended I used "repeat" to count the number of times it is sucessfully equal and if all no. are equal then the value of repeat will be 20 and then we will check if repeat is 20. if true then all are equal else its not equal the problem is for loop only seems to execute once and so the value of repeat only increases once.

6th May 2019, 12:19 PM
kuku Debbarma
kuku Debbarma - avatar
4 Answers
+ 1
~ swim ~ i just corrected the loop. Turns out I forgot to edit it after changing the number of integers the array holds but still didn't solve the problem :(
6th May 2019, 1:11 PM
kuku Debbarma
kuku Debbarma - avatar
+ 1
When you do: i = 5; print (num[i++]); It prints num[5] and then add to i so i = 6. Correct code: https://code.sololearn.com/cX4F6GTJ7Ens/?ref=app
6th May 2019, 1:21 PM
Maneren
Maneren - avatar
+ 1
Maneren ty for that will definitely give it a look rn
6th May 2019, 1:33 PM
kuku Debbarma
kuku Debbarma - avatar
6th May 2019, 12:20 PM
kuku Debbarma
kuku Debbarma - avatar