+ 8
What are the major "goals to achieve" in programming right now?...And when will we know them
8 Antworten
+ 5
interesting question 👍
i missed that ';'
+ 4
Umm.... Save the whales, save the trees, and feed the people in Africa that are hungry.
As far as I know, we don't have some master list, so don't worry, none of us received the memo about it. You can either look for problems and provide solutions, or you can listen to other people's problems and then provide them with a solution. Basically, you're a problem-solution person.
+ 4
your one question which you send to the solo learn in java section is wrong!
the output of the following code will be 12345
and according to you it's six , How?
code =>
What will be the output of the code?
int i;
for(int i = 1 ; i<=5;i++)
System.out.print(i);
+ 4
nice
+ 3
no u missed one token....the semi colon after the for statement...that makes it an empty loop
+ 3
thank u for noticing atlast
+ 3
ok
+ 1
int i;
for(int i = 1 ; i<=5;i++);//here
System.out.print(i);