Accept 'n' values in an array and print the first and last digit of each element present in the array. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Accept 'n' values in an array and print the first and last digit of each element present in the array.

I cannot get the desired output and I am not able to detect my mistake. Though the program code is correct but it is not giving the output as when i enter a three digit number as input in the array, it did not give me the desired first digit of that number itself. Plz can someone help me in this. I would be grateful. Here is the code i have done! ! ! https://code.sololearn.com/c540NQUswWs4/?ref=app

29th Aug 2020, 4:18 PM
Sheetal
Sheetal - avatar
6 Answers
+ 5
1) condition in else if will only be evaluated when condition inside *if* statement is FALSE which is not the case for any number greater than 9 (as mentioned by Ruba Kh ) 2) your code will not work for number greater than 999 like this.( you should preffer another method to find out first digit of the number) here is the fix👇 https://code.sololearn.com/cVz2MSABv55l/?ref=app
29th Aug 2020, 4:29 PM
Arsenic
Arsenic - avatar
+ 2
The problem in your code is that it will enter the first if condition if number is greater than 9 so even if it is greater than 99 it will still enter the first if For example 203 is greater than 9 so it will enter the first if
29th Aug 2020, 4:35 PM
Ruba Kh
Ruba Kh - avatar
+ 2
Ruba Kh Yes i have understood and thank you for your help.
29th Aug 2020, 4:38 PM
Sheetal
Sheetal - avatar
+ 2
Arsenic Thanks a lot for your great concern.I am thankful to you.
29th Aug 2020, 4:39 PM
Sheetal
Sheetal - avatar
+ 1
Plz help me in this!! I would appreciate your effort!!!
29th Aug 2020, 4:28 PM
Sheetal
Sheetal - avatar
+ 1
So if you modify the first if like this if(a[i]>9 && a[i]<=99) it will work
29th Aug 2020, 4:36 PM
Ruba Kh
Ruba Kh - avatar