You are here

Page not found

Search results

  1. 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 ...

    devyog - 05/12/2019 - 20:07

  2. 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 ...

    devyog - 05/12/2019 - 18:46

  3. 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 {     ...

    devyog - 05/12/2019 - 18:31

  4. 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 ...

    devyog - 05/12/2019 - 00:40

  5. 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 ...

    devyog - 05/12/2019 - 00:30

  6. Java program to print prime numbers

    Java program to print prime numbers, a user input how many of them are ... || []).push({}); Print prime numbers in Java import java.util.* ; class PrimeNumbers {   public static ...

    devyog - 05/12/2019 - 00:22

  7. Static block in Java

    Java programming language offers a block known as static that runs before the ... its functioning. Later, we see its practical use. Java static block program class StaticBlock {   public ...

    devyog - 04/12/2019 - 19:56

  8. Java hello world program

    "Hello world" program in Java to display "Hello world" on the screen. How to write hello world rogram in Java? class HelloWorld {     public static void ...

    devyog - 04/12/2019 - 08:42

  9. How to take input from a user in Java

    Java program to get input from a user, we are using Scanner class for it. The ... we print them on the screen. Scanner class is present in "java.util" package, so we import this package into our program. We create an ... a floating-point number 3) nextLine to input a string Java input program import java.util.Scanner ; class ...

    devyog - 01/12/2019 - 08:56

  10. C program to copy a file

    ... int main ( ) {     char ch , source_file [ 20 ] , target_file [ 20 ] ;    FILE * source , * target ;     printf ( "Enter name of file to ...

    devyog - 23/11/2019 - 11:40

Pages