About 50 results
Open links in new tab
  1. java - Student Grade Calculation - Code Review Stack Exchange

    Jun 3, 2020 · Develop a smart application as Student Grade Calculator (SGC). Create a class Student with following private attribute : int id, String name, marks (integer array), float average and char g...

  2. Calculate the base 10 log with loops in Java without using Math

    Dec 27, 2023 · I'm looking for a simple way to calculate the logarithm without using java.lang.Math, just out of interest. Here's my try (I adopted some code parts from this answer): public class Log { public

  3. Implementing a Directed and Undirected Graph in Java

    Sep 4, 2020 · Implementing a Directed and Undirected Graph in Java Ask Question Asked 5 years, 5 months ago Modified 4 years, 7 months ago

  4. java - Basic ToDoList - Create a simple to do list and print it ...

    Jul 6, 2021 · this is my second program that I have made as a Java beginner (started out like two weeks ago). The program utilizes scanner and arraylist to create a to do list which the user can add to and …

  5. Implement a simple image captcha test yourself in Java and JS

    Jul 28, 2025 · I mainly use two Java libraries for this: Blade and NanoCaptcha, for image generation. To protect the server from overload (DoS?), a new captcha may only be generated every 10 seconds …

  6. A chess engine in Java: generating white pawn moves

    Jun 26, 2024 · package com.github.coderodde.game.chess; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * This class implements a chess board state. * * @version …

  7. beginner - Lottery Game in Java - Code Review Stack Exchange

    Aug 25, 2019 · import java.util.Scanner; public class LotteryGame { private Scanner scanner = new Scanner(System.in); private final int drawSize; private final int drawLowerLimit; private final int …

  8. Parsing Java's class file - Code Review Stack Exchange

    Feb 23, 2024 · The structure of a class file consists of a single structure (presented here using pseudostructures written in a C-like structure notation): ClassFile { u4 magic; u2

  9. utility to manipulate java.util.logging config using command-line ...

    Jan 17, 2024 · utility to manipulate java.util.logging config using command-line system properties Ask Question Asked 2 years ago Modified 2 years ago

  10. Java implementation of spell-checking algorithm

    May 4, 2014 · Java implementation of spell-checking algorithm Ask Question Asked 11 years, 9 months ago Modified 7 years, 10 months ago