Java

3 articles in this category

Java JDK

Java JDK

Java Development Kit (JDK) is a software development environment that provides the necessary tools and libraries for developing Java applications. It includes the Java Runtime Environment (JRE), which allows you to run Java programs, as well as the Java compiler and other development tools.

31
Two sum problem | Java program

Two sum problem | Java program

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order.

344
FizzBuzz problem | Java program

FizzBuzz problem | Java program

Write a program that outputs the string representation of numbers from 1 to n. but for multiples of three it should output "Fizz" instead of the number and for the multiples of five output "Buzz". For numbers which are multiples of both three and five output "FizzBuzz".

357