CodeGym
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
  • Josephine
    Level 26
    Normal
    Question about the task Do we have a pair?
    Java Syntax, Level 4, Lesson 4
    Resolved
    why my 3rd and 4th condition not passing?why my 3rd and 4th condition not passing?
    • 19.03.2020
    • 965views
    • 2comments
    0
  • Aungk Zaw Htay
    Level 4
    Monywa
    Question about the task Sum of 5 numbers
    Java Syntax, Level 3, Lesson 4
    Under discussion
    please help mewhy output is display only one line total sum 15. I can't output 5line. Please hint me.
    • 16.03.2020
    • 768views
    • 2comments
    0
  • 0lsen11
    Level 9
    Warsaw
    Question about the task Three numbers
    Java Syntax, Level 4, Lesson 6
    Under discussion
    what's the problempackage com.codegym.task.task04.task0424; /* Three numbers */ import java.io.*; public class Solution { public static void main(String[] args) throws Exception { BufferedReader x = new BufferedReader(new InputStreamReader(System.in)); String a1= x.readLine(); int a =
    • 19.02.2019
    • 1551views
    • 6comments
    0
  • Laurap5
    Level 9
    Vilnius
    Question about the task Three numbers
    Java Syntax, Level 4, Lesson 6
    Under discussion
    Please helpWhy it's not working? :(
    • 07.11.2018
    • 2154views
    • 8comments
    0
  • Anonymous
    Level 18
    Question about the task Sorting bytes
    Java Core, Level 8, Lesson 3
    Resolved
    Cant seem to Verify it , Need some Help..
    • 21.05.2019
    • 1644views
    • 4comments
    0
  • Sanjay Chauhan
    Level 28
    Delhi
    Question about the task Building a file
    Java Core, Level 8, Lesson 11
    Resolved
    task 3 is getting failDears, Will it be possible to check why requirement 3 is getting fail to validate? Thanks for your help in advance.
    • 20.03.2020
    • 716views
    • 1comment
    0
  • Serg
    Level 23
    Tyumen
    Question about the task Min and max in arrays
    Java Syntax, Level 7, Lesson 12
    Under discussion
    What is the problem. The program is working properly. But does not pass the testWhat is the problem. The program is working properly. But does not pass the test package com.codegym.task.task07.task0721; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Solution { public static void main(String[] args) throws IOExce
    • 30.05.2019
    • 1672views
    • 1comment
    0
  • Goran
    Level 41
    Belgrade
    Question about the task Moon Lander (Part 13/23)
    Games, Level 0, Lesson 4
    Resolved
    Can't see the rocketWhen i try to run my game I don't see rocket. Just see white squares in first row left horizontal and top line. Is this normal or I did something wrong ?
    • 19.03.2020
    • 1004views
    • 1comment
    0
  • Ted404
    Level 11
    Dubai
    Question about the task Duplicating words
    Java Syntax, Level 7, Lesson 9
    Resolved
    I want to understand how the code is workingThe solution is already passing. However, I cannot understand the line "public static ArrayList doubleValues(ArrayList list)". How does it work and what is it for. Can you please explain this in detail? package com.codegym.task.task07.task0717; import java.io.BufferedReader; import java.io.Input
    • 19.03.2020
    • 1714views
    • 3comments
    0
  • Wei Cui
    Level 39
    Newark
    Question about the task Search for hidden files
    Java Collections, Level 1, Lesson 4
    Resolved
    Last requirementCould someone give hints, plz
    • 18.03.2020
    • 1083views
    • 2comments
    0
  • Satya Vath
    Level 31
    Vijayawada
    Question about the task 2048 (Part 7/18)
    Games, Level 0, Lesson 2
    Resolved
    Help MeEverything is correct But unable to pass
    • 19.03.2020
    • 1269views
    • 2comments
    0
  • hacks patel
    Level 20
    Ahmedabad
    Question about the task Chicken factory
    Java Core, Level 4, Lesson 6
    Resolved
    what the wrong with itI cant understand why i get error
    • 21.05.2019
    • 1549views
    • 2comments
    2
  • Anita Pal
    Level 14
    Question about the task Reading a file
    Java Core, Level 3, Lesson 11
    Archived
    I am not able to satisfy second conditionpackage com.codegym.task.task13.task1318; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Scanner; import java.io.FileInputStream; /* Reading a file */ public class Solution { public static void main(String[] args) { // write your code here
    • 22.11.2019
    • 1604views
    • 3comments
    0
  • Denis
    Level 22
    Kharkiv
    Question about the task Reading a file
    Java Core, Level 3, Lesson 11
    Archived
    HELP PLSONE CONDITION (
    • 24.06.2019
    • 1142views
    • 2comments
    0
  • David
    Level 26
    Bucharest
    Question about the task Census
    Java Syntax, Level 8, Lesson 8
    Under discussion
    I really can't see what is wrong;Can someone explain me, please, what is wrong?
    • 19.03.2020
    • 1380views
    • 3comments
    0
  • Dinesh
    Level 7
    Delhi
    Question about the task Minimum of four numbers
    Java Syntax, Level 2, Lesson 8
    Under discussion
    Please check ternary operator 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) { //write your code here int Minimum; Minimum = a
    • 05.03.2020
    • 1262views
    • 2comments
    0
  • hs
    Level 2
    Mumbai
    Question about the task Pay raise
    Java Syntax, Level 2, Lesson 2
    Under discussion
    what is problem in my program ?how the last condition will be followed? please help me Another point is my output come out fine
    • 16.03.2020
    • 962views
    • 5comments
    0
  • Ashish RajAnand
    Level 13
    Bhilai
    Resolved
    selection sort public static void SelectionSort(int arras[]) { int ns = arras.length; for (int i = 0; i < ns - 1; i++) { int minindex = i; for (int j = i + 1; j < ns; i++) if (arras[j] < arras[minindex]) minindex = j; int temp = arras[i];
    • 03.03.2020
    • 819views
    • 2comments
    0
  • Anas
    Level 0
    Under discussion
    can someone help me with the recursive function??Create a Java program that generate the following series using recursive function. 100 200 300 400 500 600 700 800 900 1000 i don't know how to use this function anyone can help me ??
    • 18.03.2020
    • 902views
    • 1comment
    2
  • Aungk Zaw Htay
    Level 4
    Monywa
    Question about the task Plan to conquer the world
    Java Syntax, Level 3, Lesson 8
    Under discussion
    what is wrong?please help me
    • 18.03.2020
    • 1109views
    • 4comments
    0
  • Anonymous #10410173
    Level 22
    Delhi
    Question about the task OOP: Cars
    Java Core, Level 5, Lesson 2
    Resolved
    stuck in the last conditionWhats wrong
    • 18.03.2020
    • 851views
    • 1comment
    0
  • Sanjay Chauhan
    Level 28
    Delhi
    Question about the task Rounding numbers
    Java Core, Level 8, Lesson 11
    Under discussion
    Taks fail Dear CodeGym Members, As I tested my solution is working fine but I can't pass the task. Will it be possible to check what I am doing wrong? Thank you. Regards, Sanjay Chauhan
    • 18.03.2020
    • 961views
    • 2comments
    0
  • Anthony Chalk
    Level 30
    London
    Question about the task Tracking changes
    Java Core, Level 9, Lesson 11
    Resolved
    Infinite loop somewhere?My code keeps failing because : The program ran too long and was closed! No idea why though
    • 29.01.2020
    • 1287views
    • 11comments
    0
  • Vaibhavi
    Level 5
    Vijayawada
    Question about the task Implement the print method
    Java Syntax, Level 2, Lesson 1
    Under discussion
    help in understanding the task - Implement the print methodI am unable to understand this particular task. please help me understand the same and solve it.
    • 18.10.2019
    • 1597views
    • 8comments
    0
  • Richard Herrera
    Level 3
    Tampa
    Question about the task Implement the print method
    Java Syntax, Level 2, Lesson 1
    Resolved
    inmplement print method?not sure how to implement print from main. my code below package com.codegym.task.task02.task0201;
    • 15.02.2020
    • 1502views
    • 6comments
    0
  • Naweed
    Level 2
    Kabul
    Question about the task Implement the print method
    Java Syntax, Level 2, Lesson 1
    Under discussion
    This workoutput s String for times
    • 14.03.2020
    • 1054views
    • 2comments
    0
  • shovan
    Level 22
    Kolkata
    Question about the task Template pattern
    Java Core, Level 5, Lesson 12
    Resolved
    plss helpfailing the third condition.
    • 17.09.2019
    • 1113views
    • 5comments
    0
  • Joy Majumdar
    Level 16
    Kolkata
    Question about the task Robot wars
    Java Core, Level 3, Lesson 11
    Resolved
    How to apply the logic to attack/defend chest ?How to ?
    • 18.07.2019
    • 2001views
    • 5comments
    0
  • HaeWon Chung
    Level 17
    Boston
    Question about the task Working with dates
    Java Syntax, Level 8, Lesson 11
    Under discussion
    Please help meIt seems like null is passed to input in line 28. Any idea how to make it work?
    • 25.02.2020
    • 1126views
    • 3comments
    0
  • Miroslav
    Level 9
    Bratislava
    Question about the task Do we have a pair?
    Java Syntax, Level 4, Lesson 4
    Resolved
    Why it didn't passHi guys i made it this way my program is working corectly but it didn't pass i did not read about method how to do it in conditions what is wrong with this? Thanks for help
    • 17.03.2020
    • 1114views
    • 2comments
    0
  • 1
  • ...
  • 220
  • 221
  • 222
  • 223
  • 224
  • ...
  • 372
Learn
  • Registration
  • Java Course
  • Help with Tasks
  • Pricing
  • Java Syntax
Community
  • Users
  • Articles
  • Forum
  • Chat
  • Success Stories
  • Activity
  • Affiliate Program
Company
  • About us
  • Contacts
  • Reviews
  • Press Room
  • CodeGym for EDU
  • FAQ
  • Support
CodeGym CodeGym is an online course for learning Java programming from scratch. This course is a perfect way to master Java for beginners. It contains 1200+ tasks with instant verification and an essential scope of Java fundamentals theory. To help you succeed in education, we’ve implemented a set of motivational features: quizzes, coding projects, content about efficient learning, and a Java developer’s career.
Follow us
Interface language
English
Deutsch Español हिन्दी Français Português Polski বাংলা 简体中文 मराठी தமிழ் Italiano Bahasa Indonesia 繁體中文 Nederlands 日本語 한국어 Bulgarian Danish Hungarian Basa Jawa Malay Norwegian Romanian Swedish Telugu Thai Українська Filipino Turkish Azərbaycan Русский Vietnamese
Programmers Are Made, Not Born © 2025 CodeGym
MastercardVisa
Programmers Are Made, Not Born © 2025 CodeGym