0
Error
This has more solutions, not only one!
10 odpowiedzi
+ 17
@Hatsy Rei Pretty much spot on
@Alexander
for(int x=0;x<99;x++){
// Note the x++
+ 16
I'm thinking:
For(int x=0; x<99; x++){
if(x%2!=0)
continue;
Console.WriteLine(x);
}
But idk C# syntax well lol
+ 15
Oh ho, you tapped the upper right corner, which leads to the discuss sections. You need to tap on the comments section, which is on the lower left corner of the tutorial slides.
Anyway, warm welcomes :>
+ 14
Nope, doesn't do that unfortunately. You could tell us what task it is or, preferably, copy-paste it here 👍
+ 13
Error
This has zero questions, not one!
+ 4
What?
+ 1
i thought it will be linked to the task
+ 1
here it is. 
+ 1
so again. here it is. Fill in the blanks to print only even numbers.
For(int x=0;x<99)_
__(x%2!=0)
_________
Console.WriteLine(x);
}
0
so yeah, another solutions is the x++ but it said its wrong xD