You are here

Page not found

Search results

  1. Even odd program in Java

    Java program to check whether a number is even or odd; if it's divisible by ... || []).push({}); Odd even program in Java import java.util.Scanner ; class OddOrEven {   public ...

    Yogesh Suneja - 25/10/2020 - 23:04

  2. Swapping of two numbers in Java

    Java program to swap two numbers with and without using an extra variable . ... || []).push({}); Swapping program in Java import java.util.Scanner ; class SwapNumbers {     public ...

    Yogesh Suneja - 05/12/2019 - 21:15

  3. Matrix multiplication in Java

    Java program to multiply two matrices, before multiplication, we check whether ... = window.adsbygoogle || []).push({}); Java matrix multiplication import java.util.Scanner ;   class MatrixMultiplication {   ...

    Yogesh Suneja - 05/12/2019 - 20:30

  4. Transpose of a matrix in Java

    Java program to find the transpose of a matrix (of any order), we interchange ... and columns to obtain the transpose. Matrix transpose in Java import java.util.Scanner ; class TransposeAMatrix {   public ...

    Yogesh Suneja - 05/12/2019 - 20:21

  5. Matrix addition in Java

    Java program to add two matrices of any order. You can modify it to add any ... || []).push({}); Addition of two matrix in Java import java.util.Scanner ; class AddTwoMatrix {   public ...

    Yogesh Suneja - 05/12/2019 - 20:07

  6. Reverse a number in Java

    Java program to find the reverse of a number, for example, if the input is 951, the output is 159. Java program to reverse a number import java.util.Scanner ; class ReverseNumber {   public ...

    Yogesh Suneja - 05/12/2019 - 20:03

  7. Java program to generate random numbers

    Java program to generate random numbers. We print 10 random numbers in the range [0, 100]. Program to generate random numbers in Java import java.util.* ; class RandomNumbers {   public static ...

    Yogesh Suneja - 05/12/2019 - 18:46

  8. Java program to find all substrings of a string

    Java program to find substrings of a string: This program finds all substrings ... []).push({}); Find substrings of a string in Java import java.util.Scanner ;   class SubstringsOfAString {     ...

    Yogesh Suneja - 05/12/2019 - 18:31

  9. Floyd's triangle in Java

    Java program to display Floyd's triangle, in the triangle, there are n integers ... || []).push({}); Floyd's triangle Java program import java.util.Scanner ;   class FloydTriangle {   public ...

    Yogesh Suneja - 05/12/2019 - 00:40

  10. Armstrong number in Java

    Java program to check if a number is Armstrong or not, it is a number that is ... || []).push({}); Armstrong number program in Java import java.util.Scanner ;   class ArmstrongNumber {   public ...

    Yogesh Suneja - 05/12/2019 - 00:30

Pages