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
Java 25
All quests
All levels
Any status
Questions about tasks
Hot
Kent Hervey
Level 19
Question about the task
Family census
Java Syntax
,
Level 7
,
Lesson 12
Under discussion
can a class have an reference variable of declared type of that class
Can a class have an reference variable of declared type of that class?? This assignment seems to say "yes", but that is really surprising. private Human father; and private Human mother; I thought well maybe codegym.cc wants us to make father and mother static, but then that would not work with
11/23/19
1516
views
3
comments
0
ilian44
Level 30
Veliko Turnovo
Question about the task
Rarest bytes
Java Core
,
Level 8
,
Lesson 3
Resolved
output all keys who's value's are equal to min and still the task failed??
11/28/19
1353
views
2
comments
0
Sarah Suß
Level 25
Hamburg
Under discussion
IntelliJ won't load excercises maybe language problem, how do I change System Language?
Hey, so I'm in level 5 now but never used IntelliJ, because it won't show the excersises past Level 2. Is that because my "Teaching Language" is German and the German translation stoppt after Level 2? Is there anyway to resolve this? Like how do I change the Language of all lessons to English?
11/24/19
1015
views
1
comment
1
MecoS
Level 16
Question about the task
R or L
Java Syntax
,
Level 7
,
Lesson 9
Under discussion
I don't understand why this did not function..
Please help.
11/28/19
1009
views
1
comment
0
Artur Jarosz
Level 30
Lublin
Question about the task
Sequential file output
Java Core
,
Level 6
,
Lesson 13
Under discussion
Can't find an error.
Hi all. Can't find an error. The message is "Be sure that the getFileContents method returns all the file contents, not just a part of it. " I have tried many files and everytime the output is correct. Can someone give me a little hint? Thanks!
11/28/19
1196
views
1
comment
0
Cristian
Level 16
Bucharest
Question about the task
One large array and two small ones
Java Syntax
,
Level 7
,
Lesson 4
Under discussion
The last condition isn't acomplished. Why? Thanks a lot.
package com.codegym.task.task07.task0705; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Scanner; /* One large array and two small ones */ public class Solution { public static void main(String[] args) throws Exception { int[] list = new int[20];
10/30/19
1372
views
2
comments
2
Vasagio
Level 5
Gdynia
Under discussion
Level 3, Lesson 3
I click on "verify" and nothing happens. Tried to refresh page couple of times, but it's still the same. Also, in previous task with "repeat the following code" there is no code, just blank space. In the task there is nothing under "requirements".
11/6/19
904
views
1
comment
1
Chucky1985
Level 3
Regensburg
Under discussion
Dividing is good - No Class in the tree
I have a problem to run all of the excercises in Level 3. There is no class tree behind, I´m not able to run any code. What class do I need to implement, where to implement the main method? Is this a bug or have I missed out all this info?
11/7/19
1329
views
2
comments
1
Erhan H.
Level 23
Istanbul
Question about the task
Prices 2
Java Core
,
Level 8
,
Lesson 11
Under discussion
Need help
Need help
11/27/19
1285
views
3
comments
0
Ethan
Level 7
Hannover
Question about the task
Sorting three numbers
Java Syntax
,
Level 4
,
Lesson 6
Resolved
why isn't it working???
package com.codegym.task.task04.task0420; /* Sorting three numbers */ import java.io.*; public class Solution { public static void main(String[] args) throws Exception { //write your code here BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.i
11/26/19
1541
views
4
comments
0
chinchillo
Level 6
Question about the task
Rule of the triangle
Java Syntax
,
Level 4
,
Lesson 4
Under discussion
Any idea whats wrong?
Seems right to me.
11/17/19
932
views
3
comments
0
Ethan
Level 7
Hannover
Question about the task
This age doesn't work for me…
Java Syntax
,
Level 4
,
Lesson 1
Under discussion
my program fails over and over! and idk why... please help
public class Solution { public static void main(String[] args) { Person person = new Person(); System.out.println("Age is: " + person.age); person.adjustAge(person.age); //System.out.println("Adjusted age: " + person.age); } public static class Person {
11/25/19
1328
views
5
comments
0
Nicolas Huet
Level 41
Provins
Question about the task
Working with Java 8's DateTime API
Java Collections
,
Level 10
,
Lesson 10
Under discussion
And of course exact same problem here as the previous task
Any help would be very welcomed :)
11/27/19
996
views
2
comments
0
Andrew
Level 29
Seattle
Question about the task
Chat (part 16)
Java Multithreading
,
Level 6
,
Lesson 15
Resolved
Can't get a < break; >
Take a look at the bottom of the Client class. I've tried both switch block and if-else block and the results are the same. I'm wracking my brain to think of why the exception wouldn't be thrown correctly. I tried putting the exception test just after receive(), but it REALLY didn't like that. Al
5/28/19
1380
views
5
comments
0
Serg
Level 23
Tyumen
Question about the task
Family relations
Java Syntax
,
Level 2
,
Lesson 2
Under discussion
Why code is written like this: man.wife = woman; woman.husband = man; ?
What does the code mean? man.wife = woman; woman.husband = man; Why is a variable set like this? man.wife woman.husband And what is the value of this variable? How can it be used? And the main thing: why variables are set like this - through a point, using a point?
4/18/19
1432
views
1
comment
1
Francisco Rey
Level 3
Carluke
Question about the task
Minimum of three numbers
Java Syntax
,
Level 2
,
Lesson 8
Under discussion
what's wrong?
It is doing what is asked, but not completing don't know why.
11/27/19
1040
views
2
comments
0
LucGar
Level 22
Bilbao
Under discussion
Problem "no class to display"
Hello, i am have a problem (i think) with the first lesson of the level 3, when i try to do the task in the window appear "no class to display", and this appear in the rest of task.
11/9/19
1061
views
3
comments
1
Fer
Level 4
Valencia
Under discussion
I am getting a very weird output when I type on my keyboard using your Java compiler while doing the tasks
Something is wrong with your tasks. I am getting this output after typing just s and then y where you write your program and the more I type, the more random letters are displayed on the screen. Please help: package com.codegym.task.task01.task0126; /* Don't feel like it? Do it anyway. */ publi
8/22/19
1096
views
2
comments
0
krystian
Level 9
Kozle
Question about the task
Maximum of four numbers
Java Syntax
,
Level 4
,
Lesson 6
Under discussion
Can someone help me? I do not know what is wrong with that code
public class Solution {
11/27/19
793
views
2
comments
0
Keerthana Vijayakumar
Level 19
Mumbai
Question about the task
Minesweeper (Part 6/16)
Games
,
Level 0
,
Lesson 0
Under discussion
Please help me to figure my mistake out
Every time it's showing like "You are checking for the field that is a mine", even i tried by changing the conditions.
7/17/19
1047
views
1
comment
0
Павел Артеменко
Level 41
Krasnodar
Question about the task
Prices 2
Java Core
,
Level 8
,
Lesson 11
Under discussion
Please, help!
This code passed all my tests, updated product resides on the same line as before update, but requirement 3 somehow not met... What am I doing wrong, or how to change code to pass requirement 3?
4/25/19
1666
views
1
comment
0
Erhan H.
Level 23
Istanbul
Question about the task
Finding data inside a file
Java Core
,
Level 8
,
Lesson 11
Under discussion
Need help
Need help.
11/27/19
1199
views
1
comment
0
Shalini
Level 1
Mumbai
Under discussion
Needs project or topic of project
I m in the final year and need projects (language Php, java, Html, or any other language). Please help me
8/18/19
1252
views
2
comments
0
Anastassia
Level 5
Sofia
Question about the task
Rule of the triangle
Java Syntax
,
Level 4
,
Lesson 4
Resolved
Any help with this task?
It seems that my code is OK (tried different versions), but still giving me errors. Any help will be appreciated! :)
11/27/19
1011
views
2
comments
0
Ilia Kalugin
Level 25
Novara
Question about the task
Even and odd digits
Java Syntax
,
Level 6
,
Lesson 5
Under discussion
what's wrong in my code?
Could somebody give me answer why my code is wrong? It satisfies all conditions.
11/27/19
1216
views
1
comment
0
Picvajzmen
Level 20
Belgrade
Question about the task
Prices 2
Java Core
,
Level 8
,
Lesson 11
Resolved
I need a fresh pair of eyes please
I can not find a mistake, if anyone can point it out, i would be very grateful. Thanks
11/25/19
1498
views
5
comments
0
Francisco Silva
Level 6
Reykjavik
Question about the task
Task about algorithms
Java Syntax
,
Level 5
,
Lesson 12
Archived
Last Requirement
Can't get the last requirement to work and I don't understand why? Code seems to have the correct output.
11/27/19
1005
views
2
comments
0
Jen P
Level 26
Question about the task
Unzipping a file
Java Collections
,
Level 1
,
Lesson 10
Under discussion
Can anyone help to give me some clues on where my code is wrong ?
I also tried to do a local test, what I did is : create a local zip file, for example zip a music.map file to musicmp3.zip. I then use zip musicmp3.zip --out splitArchive.zip -s 3m Then I ll get files like: splitArchive.z01 // Zip archive splitArchive.z02 // for some reason mac shows it as ` Doc
8/23/19
1327
views
1
comment
0
Erhan H.
Level 23
Istanbul
Question about the task
Prices
Java Core
,
Level 8
,
Lesson 11
Resolved
My tests are OK but it doesn't verify
Can you please give me an advice..
11/26/19
1101
views
2
comments
0
hidden #10538281
Level 10
Question about the task
Labels and numbers
Java Syntax
,
Level 4
,
Lesson 7
Resolved
Problem with "Zero"
Hello! The task requirements are not met. Could you please tell me what I got wrong with the "zero" requirement? Thank you so much!
10/31/19
1848
views
3
comments
0
Show more
1
...
253
254
255
256
257
...
374
Please enable JavaScript to continue using this application.