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
Piotr Zacny
Level 3
Katowice
Resolved
Question about downloading JDK
I tried to download JDK from the oracle site but it asks me to log in. I don't have account so i tried to register new one. The problem is that it asks me to write info about my job title, job phone number adresses etc. Do i need it to end this course? Is it a way to get it without these informatio
11/19/19
1163
views
11
comments
0
Jackgai
Level 26
Tokyo
Question about the task
Prevent cloning
Java Multithreading
,
Level 1
,
Lesson 8
Under discussion
please help
I have no idea how to pass the last requirement. Could anybody give me some help. Appreciate it.
9/16/19
1236
views
2
comments
1
chinna gnanesh
Level 9
Chennai
Question about the task
R or L
Java Syntax
,
Level 7
,
Lesson 9
Resolved
how to solve this Exception in thread "main" java.util.ConcurrentModificationException
help me
11/21/19
951
views
1
comment
0
Soham
Level 5
Kitchener
Question about the task
Sorting three numbers
Java Syntax
,
Level 4
,
Lesson 6
Under discussion
Hi there can someone please help me with this
helpppp
11/21/19
1022
views
1
comment
0
Vicente
Level 9
Argentina
Question about the task
Longest string
Java Syntax
,
Level 7
,
Lesson 6
Archived
Any ideas of what's going on here?
My code does what the task asks for but it doesn't meet the requirements
11/17/19
1299
views
2
comments
0
yi
Level 20
Toronto
Question about the task
Min and max in arrays
Java Syntax
,
Level 7
,
Lesson 12
Under discussion
Can someone help with his ?
The output are 111 and - 150, But couldn't pass the test. Thanks
11/20/19
1076
views
2
comments
0
- FniJnn -
Level 33
Paris
Question about the task
Request parser
Java Core
,
Level 5
,
Lesson 12
Under discussion
What's the problem ?
I don't understand what's wrong here
11/20/19
1029
views
1
comment
0
Dave Andrea
Level 41
Question about the task
Sorting three numbers
Java Syntax
,
Level 4
,
Lesson 6
Under discussion
Code works but not passing
It is beginning to get annoying how often this happens. If they have further requirements, why not just list them? That is the point of test-driven development. Any thoughts as to what the other unlisted requirements are? Thanks!
11/20/19
1343
views
7
comments
0
hidden #10526041
Level 5
Question about the task
Do we have a pair?
Java Syntax
,
Level 4
,
Lesson 4
Under discussion
Please tell me what's the problem in my code last condition is not verified
package com.codegym.task.task04.task0417;
11/20/19
1066
views
1
comment
0
Bill Hine
Level 9
Sarasota
Question about the task
R or L
Java Syntax
,
Level 7
,
Lesson 9
Resolved
The correct words are being removed what is the issue?
I put a printout to verify the correct words are being removed I dont understand why this wont validate
11/20/19
1091
views
2
comments
0
hidden #10526041
Level 5
Question about the task
Crossing the road blindly
Java Syntax
,
Level 4
,
Lesson 4
Under discussion
What's the problem in my code?
package com.codegym.task.task04.task0416;
11/20/19
964
views
1
comment
0
Bill Hine
Level 9
Sarasota
Question about the task
Checking the order
Java Syntax
,
Level 7
,
Lesson 9
Resolved
Where is this code breaking?
This code seems to work I cannot figure out why it is failing.
11/20/19
1104
views
3
comments
0
Paravoffka
Level 28
Vancouver
Question about the task
Snake (Part 1/20)
Games
,
Level 0
,
Lesson 1
Under discussion
Game class is missing in my Itellij IDEA environment.
Hi, When I try to extend to Game class I see following error message: "cannot resolve symbol Game". As a solution, environment offers me to create new Game class. Apparentely I'm missing the Game class. The question is how can I fix this issue? Thanks.
11/20/19
1152
views
1
comment
0
Kirsten de Wit
Level 17
Cape Town
Question about the task
Expressing ourselves more concisely
Java Syntax
,
Level 7
,
Lesson 6
Archived
Printing both shortest Strings
I print out both shortest strings, but fail to meet the requirements.
11/20/19
1002
views
1
comment
0
Justin Smith
Level 8
Question about the task
Countdown
Java Syntax
,
Level 7
,
Lesson 12
Under discussion
Accepted Solution vs What I Originally Had
No real issue, this just kinda irked me. Why is this acceptable: public static void main(String[] args) throws InterruptedException { for (int i = 30; i >= 0; i--) { System.out.println(i); Thread.sleep(100); } System.out.println("Boom!"); }
11/18/19
1218
views
4
comments
0
Paul
Level 24
Vienna
Question about the task
Checking the order
Java Syntax
,
Level 7
,
Lesson 9
Under discussion
can't pass the last requirement
I tested it with various lists, and I always get the correct result. Does anyone see a problem in the code?
11/20/19
896
views
4
comments
0
Mark Harold Atabelo
Level 3
Tagbilaran
Question about the task
Time conversion
Java Syntax
,
Level 3
,
Lesson 5
Resolved
Whats wrong in this program? i call 2 two times but wont accept.
package com.codegym.task.task03.task0312; /* Time conversion */ public class Solution { //write your code here public static int convertToSeconds(int hour){ int s = hour * 60; return s; } public static void main(String[] args) { //write your code here System.out.
8/22/18
2804
views
3
comments
0
Wojtek
Level 23
Solec-Zdroj
Question about the task
Three methods and a minimum
Java Core
,
Level 2
,
Lesson 4
Under discussion
What is wrong here?
need help
2/5/19
1558
views
3
comments
0
teja gowtham
Level 4
Hyderabad
Question about the task
Pets need people
Java Syntax
,
Level 2
,
Lesson 5
Under discussion
Woman type for owner declaration? not String?
Why can't we use String instead of Woman as variable type while declaring owner in each class of Cat, Dog, Fish. Example code public static class Cat { public Woman owner; // why not String owner; ? }
11/19/19
997
views
1
comment
0
tygamerforce
Level 2
Pasco
Under discussion
I have tried multiple spots
Pay raise package com.codegym.task.task02.task0205; /* Pay raise */ public class Solution { public static void main(String[] args) { hackSalary(7000); } public static void hackSalary(int a) { int b=a+1000; System.out.println("Your salary is " +(b+1000)+ " dollars per
11/19/19
901
views
1
comment
0
Hendra
Level 8
Medan
Question about the task
Currency exchange
Java Syntax
,
Level 3
,
Lesson 3
Under discussion
please help me...I can't find the answer ,stuck with the third requirement...
package com.codegym.task.task03.task0303; /* Currency exchange
11/16/19
1187
views
3
comments
0
Luyi
Level 31
Kosice
Question about the task
Your own enum
Java Multithreading
,
Level 5
,
Lesson 2
Resolved
any hints?
I got problem to match two conditions. Any ideas ? I would appreciate some support :)
11/18/19
1374
views
2
comments
0
towelie8
Level 1
Darmstadt
Question about the task
Playing Javarella
Java Syntax
,
Level 7
,
Lesson 9
Under discussion
I need some help -.-
can somebody give me a hint pls
11/19/19
956
views
1
comment
0
PaFi
Level 16
Question about the task
10 thousand deletions and insertions
Java Syntax
,
Level 8
,
Lesson 6
Resolved
Why are get and set solutions rejected?
The requirements for get and set are not approved, while insert and remove are accepted. Can't see why, they are based on the same loop... public static void get10000(List list) { //write your code here Random rand = new Random(); for (int i=0; i<10000; i++) {
11/19/19
1896
views
3
comments
0
rey
Level 6
Makati
Question about the task
More conversions
Java Syntax
,
Level 3
,
Lesson 8
Resolved
HELP GUYS!!
help mee!
4/25/19
1713
views
6
comments
0
rey
Level 6
Makati
Question about the task
Multiplication table
Java Syntax
,
Level 3
,
Lesson 6
Resolved
WHATS WRONG?!!
WHATS WRONG
4/23/19
2409
views
6
comments
0
Kent Hervey
Level 19
Question about the task
The basis of a wheel
Java Syntax
,
Level 5
,
Lesson 9
Resolved
This was challenging to me because I need more experience with inner classes
I finally got it to work by troubleshooting method. I commented out the main method code related to the inner class, and built up something that worked in the outer Circle class. That required me to fix some things...then I uncommented then commented out my troubleshooting code and it worked. I m
10/22/19
1249
views
1
comment
0
Kent Hervey
Level 19
Question about the task
R or L
Java Syntax
,
Level 7
,
Lesson 9
Resolved
Verification works, but code style fails
I have two for loops like the below..the second not shown is the adder: I pass verification, but code style complains: "control variable i is modified" Any suggestions? I looked at other questions in help and it seems others are doing something similar. Maybe try a while loop? int orig
11/16/19
1374
views
4
comments
0
Dave Andrea
Level 41
Question about the task
Longest string
Java Syntax
,
Level 7
,
Lesson 6
Archived
Getting desired output, but not passing tests...??
I'm getting the exact output I was looking for, but my solution is not being accepted. Any thoughts?
11/18/19
897
views
2
comments
0
Fang44
Level 13
Under discussion
Plugin is not working
Hello, I just installed the plugin but i have problems... First when i click on the list of tasks i see only tasks from the part 0 to 1 : You can see level 2 there is nothing and its the same for the next level only 0 and 1 are on the list. And my second problem is when i clic on one of those
11/18/19
1124
views
7
comments
0
Show more
1
...
256
257
258
259
260
...
374
Please enable JavaScript to continue using this application.