Java program to swap two numbers

Write a java program to swap two numbersIn this program, you will learn the technique of swapping two numbers using temporary variable in java programming language.  Exchanging the values...
August 30, 2023

Java program to compute quotient and remainder

Write a java program to compute quotient and remainderIn this program, the quotient and remainder find in java programming language.The different parts of division are dividend, divisor, quotient...
August 27, 2023

Java program to find ASCII value of a character

Write a java program to find ASCII value of a characterIn this program, find and display the ASCII value of a character in java using typecasting and normal...
August 24, 2023

Write a Java program to add two integers

Java program to add two IntegersIn this program, two integers 11 and 12 are stored in integer variables first and second respectively.Then, first and second are added using the + operator, and its result is stored in another variable sum.Finally, sum is printed on the...
August 21, 2023

Write a Java program to print an Integer

How to print an integer entered by an userIn this program, an object of scanner class, reader is created to take input from standard input, Which is keyboard.Then, Enter a number prompt is printed to...
August 19, 2023