Promotion
CodeGym University
Learning
Courses
Tasks
Surveys & Quizzes
Games
Help
Schedule
Community
Users
Forum
Chat
Articles
Success stories
Activity
Reviews
Subscriptions
Light theme
Help with tasks
Reviews
About us
Start
Start learning
Start learning now
All questions
Ask a question
All quests
All levels
Any status
Questions about tasks
Hot
Ravien Sewpal
Level 9
Paramaribo
Question about the task
A name is a name
Java Syntax
,
Level 4
,
Lesson 16
Resolved
What's wrong?
package com.codegym.task.task04.task0443; /* A name is a name */ import java.io.*; public class Solution { public static void main(String[] args) throws Exception { //write your code here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); Stri
02.06.2019
1652
views
4
comments
0
R3fiX
Level 12
Tarnow
Question about the task
A name is a name
Java Syntax
,
Level 4
,
Lesson 16
Resolved
Typo error
Can anybody explain to me, where is this typo? I've check order of input data, full stop after name and I still receive error. Thanks for help.
30.05.2019
1311
views
4
comments
0
dibidebe
Level 7
Question about the task
Task about algorithms
Java Syntax
,
Level 5
,
Lesson 12
Archived
help
i try solve this with arrays, but i'm doing something wrong all the time, can someone tell me what should i do?
29.07.2019
969
views
1
comment
0
Ronaldo M
Level 2
Chennai
Question about the task
Minimum of three numbers
Java Syntax
,
Level 2
,
Lesson 8
Under discussion
help me debug this ! im not getting it right
package com.codegym.task.task02.task0216; /* Minimum of three numbers */ public class Solution { public static int min(int a, int b, int c) { if (a>b) { if (c>b) { return b; } else if(c
25.07.2019
1117
views
2
comments
0
hidden #10468516
Level 5
Question about the task
Predictions
Java Syntax
,
Level 3
,
Lesson 8
Resolved
Help me out
I am totally confused in this task.
12.07.2019
1473
views
5
comments
0
Satya Vath
Level 31
Vijayawada
Question about the task
MVC (part 3)
Java Multithreading
,
Level 4
,
Lesson 14
Resolved
Please Help
Where is the Mistake
24.05.2019
1248
views
3
comments
2
Bazsó Benjámin
Level 20
Szombathely
Question about the task
Stack trace revisited
Java Syntax
,
Level 9
,
Lesson 2
Resolved
cant find the correct pattern
i kept trying to change the number patterns but i just cant get the correct output =/
05.04.2019
2227
views
7
comments
3
hidden #10444738
Level 16
Question about the task
Census
Java Syntax
,
Level 8
,
Lesson 8
Resolved
One fails one doesn't
Why does the top code work and the bottom one not? They are the same code after all.......... public static int getSameLastNameCount(HashMap map, String lastName) { //write your code here int counter = 0; // counter for same first name for (HashMap.Entry pair : map.entr
27.06.2019
1227
views
2
comments
0
Rupa Joshi
Level 29
Tokyo
Question about the task
Shall we play?
Java Core
,
Level 6
,
Lesson 13
Under discussion
Whats wrong with the first condition?
Whats wrong with the first condition? It's the only one which is not getting verified. Can you point out what am i missing?
29.07.2019
1016
views
1
comment
0
Kayla Tounalom
Level 2
Redmond
Question about the task
Implement the print method
Java Syntax
,
Level 2
,
Lesson 1
Under discussion
I don't understand this task
I don't understand this task can someone please explain this to me?
27.07.2019
1098
views
2
comments
0
Ovo Leslie
Level 26
Lagos
Question about the task
Lonely arrays interact
Java Syntax
,
Level 7
,
Lesson 4
Archived
My code compiles correctly but wont meet the last condition. Pls advice!
package com.codegym.task.task07.task0703; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Arrays; /* Lonely arrays interact */ public class Solution { public static void main(String[] args) throws Exception { //write your code here String[]
26.07.2019
1658
views
2
comments
0
Joyonta Saha
Level 31
Question about the task
Chat (part 22)
Java Multithreading
,
Level 6
,
Lesson 15
Under discussion
How to test the chat bot?
Give a sample? Help!
27.07.2019
1434
views
7
comments
0
Antonia
Level 10
Question about the task
Remove and insert
Java Syntax
,
Level 7
,
Lesson 6
Under discussion
?
help
29.07.2019
1150
views
1
comment
0
Aakash potepalli
Level 22
Bangalore
Question about the task
Bingo!
Java Core
,
Level 4
,
Lesson 2
Under discussion
please help me with this
i am not able to pass this task
05.04.2019
1308
views
2
comments
0
hidden #10473715
Level 13
Question about the task
R or L
Java Syntax
,
Level 7
,
Lesson 9
Resolved
What's the problem?
The output is right
27.07.2019
1396
views
1
comment
0
ddi
Level 18
Dortmund
Question about the task
20 words that start with the letter "L"
Java Syntax
,
Level 8
,
Lesson 8
Resolved
Why doesn´t this work?
What am i missing? The loop is created, 20 times with the letter L. why doesn´t he recognize it?
27.06.2019
2252
views
3
comments
0
Nitin raj
Level 12
Mumbai
Question about the task
Shuffled just in time
Java Syntax
,
Level 7
,
Lesson 12
Under discussion
Help me out
I think My code is correct but Still Task Condition is not met.
13.07.2019
1306
views
5
comments
0
Denis
Level 22
Kharkiv
Question about the task
Currencies
Java Core
,
Level 4
,
Lesson 8
Under discussion
give me pls solution(
heeeeelp
25.06.2019
1012
views
1
comment
0
Lukas Smetana
Level 10
London
Question about the task
More Sam-I-Am
Java Syntax
,
Level 7
,
Lesson 9
Under discussion
Passed but is it correct way of programing?
ArrayList list = new ArrayList(); Collections.addAll(list,"Sam","Ham", "I","Ham", "Am", "Ham"); for (int i = 0; i < list.size() ; i++) { System.out.println(list.get(i)); }
28.07.2019
1289
views
1
comment
0
Sundaram
Level 12
Chennai
Question about the task
Family census
Java Syntax
,
Level 7
,
Lesson 12
Under discussion
What is wrong in this?
package com.codegym.task.task07.task0724; /* Family census */ public class Solution { public static void main(String[] args) { Human h1 = new Human("Joseph",true,70); Human h2 = new Human("Mary",false,65); Human h3 = new Human("Phillips",true,65); Human h4 = n
09.02.2019
1772
views
2
comments
3
Lukas Smetana
Level 10
London
Question about the task
Playing Javarella
Java Syntax
,
Level 7
,
Lesson 9
Resolved
Help please
Dont know why its not passing
28.07.2019
1269
views
3
comments
0
Lukas Smetana
Level 10
London
Question about the task
Minimum of three numbers
Java Syntax
,
Level 2
,
Lesson 8
Resolved
My code doesent work
Why this does not work?
20.07.2019
1378
views
9
comments
0
Joy Majumdar
Level 16
Kolkata
Question about the task
MovieFactory
Java Core
,
Level 4
,
Lesson 8
Resolved
What is wrong here ?
Why the last condition not matching......
27.07.2019
1497
views
3
comments
0
Mykola
Level 14
Toronto
Question about the task
Maximum in an array
Java Syntax
,
Level 7
,
Lesson 4
Resolved
Promlem with max method
This method is working perfectly fine but I can't pass the validation (error occurs on step #3). Any suggestion where is the bug? Thanks.
26.07.2019
1618
views
3
comments
0
Gábor
Level 14
Budapest
Question about the task
Do we have a pair?
Java Syntax
,
Level 4
,
Lesson 4
Resolved
What is wrong with my code ? :(
pls, help me out with this.
24.07.2019
1407
views
7
comments
0
Michael Davis
Level 11
Mount Laurel
Question about the task
Minimum of four numbers
Java Syntax
,
Level 2
,
Lesson 8
Under discussion
How is this not right, when I have the Right Answers?
package com.codegym.task.task02.task0217; /* Minimum of four numbers */ public class Solution { public static int min(int a, int b, int c, int d) { int low = 0; if (a <= b && a <= c && a <= d) { low = a; } else if (b <= a &&a
21.07.2019
2056
views
3
comments
0
Swati
Level 8
Pune
Question about the task
Changing functionality
Java Syntax
,
Level 7
,
Lesson 12
Resolved
why verification fails
while running program ,its running correctly.but verification time errors are there.
17.01.2019
1686
views
4
comments
0
dibidebe
Level 7
Question about the task
Drawing lines
Java Syntax
,
Level 4
,
Lesson 13
Under discussion
help
could someone please explain to me what is wrong with my code?
27.07.2019
1285
views
1
comment
0
Jay
Level 17
Washington
Question about the task
Going national
Java Syntax
,
Level 8
,
Lesson 11
Archived
Not meeting last condition. Advised to account for additional spacing between words.
I even tried running it after adding additional spacing between words and my output was correct. What's the issue?
27.07.2019
1190
views
2
comments
0
JeRiF94
Level 22
Baku
Question about the task
Threads and bytes
Java Core
,
Level 8
,
Lesson 11
Under discussion
Mistake in last two
Help me please to understand where I did mistake.
27.07.2019
1320
views
2
comments
0
Show more
1
...
292
293
294
295
296
...
371
Please enable JavaScript to continue using this application.