You are here

Page not found

Search results

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

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

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

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

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

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

    Yogesh Suneja - 04/12/2019 - 19:56

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

    Yogesh Suneja - 04/12/2019 - 08:42

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

    Yogesh Suneja - 01/12/2019 - 08:56

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

    Yogesh Suneja - 23/11/2019 - 11:40

  9. Programs

    Source codes C programs C++ programs Java programs Programs section lets you download hundreds of source codes with executable files and class files (Java). Source codes let you understand programming fundamentals better and in ...

    Yogesh Suneja - 03/12/2019 - 22:29

  10. C program to find minimum value in an array

    ... or minimum value at the smallest index. You can modify the code to print the largest index at which the minimum occurs. You can also store ...   return index ; } C programming code using pointers #include <stdio.h> int main ( ) ...

    Yogesh Suneja - 11/10/2020 - 11:36

Pages