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
leo
Level 2
Tarbes
Under discussion
Bonjour
comment on fait pour mettre le site en francais
20.02.2020
900
views
1
comment
0
Ashish RajAnand
Level 13
Bhilai
Question about the task
Calling a constructor from a constructor
Java Syntax
,
Level 5
,
Lesson 9
Resolved
what it can ?
this(1,2,3)
19.02.2020
879
views
5
comments
0
Gowrisankar P.U
Level 5
Trichur
Question about the task
Minimum of three numbers
Java Syntax
,
Level 2
,
Lesson 8
Under discussion
Last condition not satisfied???
Output is correct and return statement is there
20.02.2020
741
views
1
comment
0
Ashish RajAnand
Level 13
Bhilai
Question about the task
Task about algorithms
Java Syntax
,
Level 5
,
Lesson 12
Resolved
what is wrong in code
what is wrong.
20.02.2020
1285
views
1
comment
0
Denis
Level 22
Kharkiv
Question about the task
Countdown
Java Syntax
,
Level 9
,
Lesson 11
Resolved
give me full code pls(
i cant understand this. pls give full code
21.06.2019
2006
views
9
comments
0
Niladri pradhan
Level 33
Mumbai
Question about the task
Chat (part 16)
Java Multithreading
,
Level 6
,
Lesson 15
Under discussion
condition 3 did not satsfying
help
28.11.2019
1304
views
8
comments
0
Anthony Chalk
Level 30
London
Question about the task
Creating cats
Java Syntax
,
Level 5
,
Lesson 9
Under discussion
please help
I don't understand why that one condition isn't being met. Please help Thanks
06.10.2019
1407
views
4
comments
0
pvacula
Level 29
Hlohovec
Question about the task
Data integrity
Java Collections
,
Level 2
,
Lesson 6
Resolved
Help please
Hi, can you help me with 3rd requirement? Output seems fine and i dont see any problem here
18.07.2019
1765
views
6
comments
0
Bryce McCord
Level 8
Houston
Question about the task
You can't buy friends
Java Syntax
,
Level 5
,
Lesson 9
Under discussion
What is wrong with my code
package com.codegym.task.task05.task0516; /* You can't buy friends */ public class Friend { String name; int age; char sex; public friend(String name) { this.name = name; System.out.println(name); } public friend(String name, int age) {
23.05.2019
1162
views
3
comments
0
Etienne Bélanger
Level 34
Longueuil
Question about the task
Duplicate text
Java Core
,
Level 9
,
Lesson 8
Resolved
Help, not sure to understand de condition properly
Do I have to write in the same file while I'm reading it?
24.01.2020
1075
views
2
comments
0
Arun
Level 17
Tirupati
Question about the task
Implement the print method
Java Syntax
,
Level 2
,
Lesson 1
Resolved
call main method , how?
Any one had know ,how to solve this task?
04.02.2020
1737
views
4
comments
0
Liliane Top
Level 17
Amsterdam
Question about the task
We don't need repeats
Java Syntax
,
Level 8
,
Lesson 8
Under discussion
Still struggling with this one
Can anybody please explain how this works. Very much appreciated!
17.02.2020
722
views
6
comments
0
Boris Penchev
Level 8
Sofia
Question about the task
Cat relations
Java Syntax
,
Level 6
,
Lesson 11
Resolved
I can`t understand where is problem. Can you help me please.
I can`t understand why the last two conditions no are right.
07.10.2019
1646
views
5
comments
2
Sára Göblová
Level 26
Prague
Question about the task
Number algorithms
Java Core
,
Level 10
,
Lesson 10
Under discussion
It says be sure that no exceptions occur in getName method for any input data
It says be sure that no exceptions occur in getName method for any input data
17.02.2020
1205
views
8
comments
0
Paul Harman
Level 5
Question about the task
Sorting three numbers
Java Syntax
,
Level 4
,
Lesson 6
Under discussion
numbers are in descending order even when changed or shuffled but last requirement not met
package com.codegym.task.task04.task0420; /* Sorting three numbers */ import java.io.*; public class Solution { public static void main(String[] args) throws Exception { BufferedReader bf=new BufferedReader(new InputStreamReader(System.in));
18.02.2020
1039
views
3
comments
0
Supriya Kesharwani
Level 3
Indore
Question about the task
Implement the print method
Java Syntax
,
Level 2
,
Lesson 1
Resolved
"Implement the print method" can anyone give me clue?
In the print method, display the passed string 4 times. Each time, on a new line.
13.08.2018
5584
views
47
comments
1
Michael Brimage
Level 19
Washington D.C.
Question about the task
Three numbers
Java Syntax
,
Level 4
,
Lesson 6
Resolved
Why wont this code work?
Can someone explain why my logic is off?
18.02.2020
1329
views
2
comments
0
Koniasz
Level 22
Warszawa
Question about the task
Remove and insert
Java Syntax
,
Level 7
,
Lesson 6
Resolved
Whats wrong in my code?
I have failed 3 and 4 conditions: Remove the last string and insert it at the beginning. Rinse and repeat 13 times. The program should display the list, each value on a new line. public class Solution { public static void main(String[] args) throws Exception { Reader r = new InputStre
11.07.2019
1386
views
2
comments
2
Benjamin Winchester
Level 17
Savannah
Question about the task
Currencies
Java Core
,
Level 4
,
Lesson 8
Resolved
Gives correct output - Not passing validation
All currencies have extend abstract Money class and are in their own file - still fails. All implement getCurrencyName() method and returns the correct output - still fails. All are constructed using the Money classes constructor - still fails.
02.12.2018
1603
views
2
comments
1
krystian
Level 9
Kozle
Question about the task
Initializing cats
Java Syntax
,
Level 5
,
Lesson 7
Under discussion
Initializing cats - i can not meet the last two Requirements
public class Cat { String name = null;
20.12.2019
2100
views
3
comments
0
Николай
Level 7
Mariupol'
Question about the task
Initializing cats
Java Syntax
,
Level 5
,
Lesson 7
Under discussion
I don't understand what's problem?
package com.codegym.task.task05.task0510; public class Cat { private String name = null; private int weight = 3; private int age = 3; private String color = "some color"; private String address = null; public static void main(String[] args) { } //7. Класс должен и
05.05.2019
1597
views
3
comments
0
Dorel
Level 2
Satu Mare
Question about the task
Minesweeper (Part 5/16)
Games
,
Level 0
,
Lesson 0
Under discussion
Why is not ok?
I don't get it. Why last condition is not okay?
17.02.2020
1306
views
2
comments
0
Piotr Osipiak
Level 19
Siedlce
Question about the task
Streets and houses
Java Syntax
,
Level 7
,
Lesson 4
Archived
problem with sum
Hello, pls. give me a tips. how to do sum? means it is: The program should display "Odd-numbered houses have more residents." if the sum of odd array elements is greater than the sum of even ones. how to do sum od odd or even after I put the numbers?
17.02.2020
871
views
2
comments
0
Liliane Top
Level 17
Amsterdam
Question about the task
We don't need repeats
Java Syntax
,
Level 8
,
Lesson 8
Under discussion
Still not working.
If somebody could please have a look and help me understand why this is still not working. Very much appreciated.
17.02.2020
1279
views
2
comments
0
ashgolan
Level 8
Ashdod
Question about the task
R or L
Java Syntax
,
Level 7
,
Lesson 9
Resolved
i dont know whats the problem !
can you help please , its not duplicate and dont pass ...
30.10.2019
1384
views
7
comments
2
MecoS
Level 16
Question about the task
We don't need repeats
Java Syntax
,
Level 8
,
Lesson 8
Under discussion
Need Help
I know that i wrote a spaghetti code but, i didn't understand how to resolve. Thanks for help.
06.12.2019
1310
views
4
comments
0
Hakkı Anıl Fındıkçıoğlu
Level 6
Ankara
Question about the task
Adding
Java Syntax
,
Level 4
,
Lesson 16
Under discussion
Third requirement fullfillment
Third requirement is not fullfilled and I see a message "-1 must be included in sum" or something like that but I am not sure what I am missing.
17.02.2020
1042
views
2
comments
0
Denis
Level 22
Kharkiv
Question about the task
Minimum byte
Java Core
,
Level 8
,
Lesson 3
Under discussion
How i can change this wrong?
Help
28.06.2019
1374
views
2
comments
0
Luca Hofmann
Level 19
Hamburg
Question about the task
Even and odd digits
Java Syntax
,
Level 6
,
Lesson 5
Resolved
Works fine, wont verify
See Title
17.02.2020
1078
views
2
comments
0
Biplob
Level 22
কুমিল্লা
Question about the task
Debug, debug, and again debug
Java Core
,
Level 5
,
Lesson 12
Under discussion
where is the problem?
Although output match,task mismatch
18.06.2019
1910
views
12
comments
0
Show more
1
...
229
230
231
232
233
...
372
Please enable JavaScript to continue using this application.