Why is this code showing no output? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why is this code showing no output?

My code keeps showing no output why ?. I'm using c#.Here's the code: I was trying to solving lab numbers community challenge. https://code.sololearn.com/cq22yT7DD2xI/?ref=app

9th May 2020, 8:13 PM
Joseph Oritseweyinmi
Joseph Oritseweyinmi - avatar
3 Answers
+ 1
Check it your self its your last if condition not true in any of the input check it your self
9th May 2020, 8:33 PM
Jason
Jason - avatar
+ 2
for (int n = 2;n <= x/2;x++) //here you x++, { if (x%n==0 && input/Math.Pow(n, 2)==0) According to these conditions, when x=4, this loop starts.. 2<=4/2 is true, but input/4==0 false, next x=5, x%n==0 false, x=6, loop condition 2<=6/2 false.. After x=8, all loops stop without any printing..
9th May 2020, 8:42 PM
Jayakrishna 🇮🇳
+ 1
Because the conditions of the code never happen
9th May 2020, 8:32 PM
Jason
Jason - avatar