Java

How to create java program to bubble sort the values in ascending order

How to create java program to bubble sort the values in ascending order. Today we will discuss how to print…

3 years ago

Write a java program to compute net pay after deducting tax of 15% from the gross pay

Write a java program to compute net pay after deducting tax of 15% from the gross pay. Write a program…

3 years ago

How to write a java program to accept n numbers as input from user till user inputs 0, the program will terminate when user inputs 0, after terminating the sum of all positive numbers and sum of all negative numbers will be displayed on screen.

import java.util.*;class Nums_Sum{public static void main(){Scanner in=new Scanner(System.in);double n=0,sp=0,sn=0;do{System.out.println("Enter number ");n=in.nextDouble();if(n>0)sp=sp+n;if(n<0)sn=sn+n;if(n==0)System.out.println("0 input terminating.");}while(n!=0);System.out.println("Sum of positive number "+sp);System.out.println("Sum of negative number…

3 years ago

How to write a java program to accept a number as input from user and check whether it is a special number or not.

import java.util.Scanner;class Special_Number{public static void main(){Scanner sc = new Scanner (System.in);System.out.println("Enter any no.");int n = sc.nextInt ();int f = 0;int…

3 years ago

WAJP to create a function that accepts an integer and find and prints the factorial of integer.

import java.util.*;class factorial{public static void fact(int n){int i=0,f=1;for(i=1;i<=n;++i)f=f*i;System.out.println(f);}public static void main(){Scanner in=new Scanner(System.in);System.out.println("Enter a number to find its factorial");int inp=in.nextInt();fact(inp);}}…

3 years ago

How to write a java menu driven program to check whether the given number is automorphic Or buzz number.

import java.util.Scanner;class AutomorphBuzz{public static void main(){Scanner kb=new Scanner(System.in); System.out.println("Enter a number to check whether a number is an Automorphic or…

3 years ago

write a java program to print reverse of the number

how to print reverse of number in java For Example number is 5786 Reverse is 6875 Firstly We Will Take…

3 years ago

write a java program to input a number and test if it is a prime number

Today We will create a java program to take input of number and check weather it is a prime number…

3 years ago

write a java program to calculate are of a triangle whit sides 16.5, 14.6, 26 cm

Today We Will learn to find the area of a triangle using java we know that area of triangle is…

3 years ago

Write a program to print following 1 3 6 10 15 21 28 sequence using for loop in java

Hello Friends Today I will Show You How We Can Print 1 3 6 10 15 21 28 sequence using…

3 years ago