You are here

Page not found

Search results

  1. getmaxcolor function

    ... starts from zero. Declaration: int getmaxcolor(); C program of getmaxcolor #include<graphics.h> #include<conio.h> ...

    Yogesh Suneja - 08/01/2018 - 20:55

  2. Bubble sort in Java

    ... of an array in ascending/descending order. Bubble sort program in Java import java.util.Scanner ; class ... ( String [ ] args ) {     int n, c, d, swap ;     Scanner in = new Scanner ( System . in ...

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

  3. Multiplication table in Java

    Java program to print multiplication table of a number entered by a user using a ... String args [ ] )   {     int n, c ;     System . out . println ( "Enter an integer to print ... table of " + n ) ;     for ( c = 1 ; c <= 10 ; c ++ )       System . ...

    Yogesh Suneja - 30/11/2019 - 20:57

  4. Linear search in Java

    Java program for linear search: Linear search is straightforward; to check if an ... ( String args [ ] )   {     int c, n, search, array [ ] ;       Scanner in = new ... n + " integers" ) ;       for ( c = 0 ; c < n ; c ++ )       array [ c ] = ...

    Yogesh Suneja - 05/12/2019 - 08:57

  5. Java program to print prime numbers

    Java program to print prime numbers, a user input how many of them are required. ... || []).push({}); Output of program: Download Prime numbers program class file. ...

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

  6. Java program to find the largest of three numbers

    Java program to find the largest of three numbers, if the numbers are unequal, then ... || []).push({}); Output of program: Download Largest of three numbers program class file. If you want to find out the largest number from a list ...

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

  7. Java hello world program

    "Hello world" program in Java to display "Hello world" on the screen. How to write hello ... ;     } } Download Hello world program class file. "Hello World" is passed as an argument, to the println ... PrintStream class, and println is the method. Output of program: ...

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

  8. pow function in C

    ... Declaration: double pow(double, double); Function pow in C language #include <stdio.h> #include <math.h> int main ( ) {   double c , d , result ;   printf ( "Enter c and d to calculate ... ;   return 0 ; } Output of program: ...

    Yogesh Suneja - 27/11/2019 - 18:54

  9. Submit your source code or program

    Here, you can submit your C, C++, or Java source code/program. We will check it, and if we find it useful, ...

    Yogesh Suneja - 22/11/2019 - 19:38

  10. Java program to compare two strings

    ... || []).push({}); Output of program: Download Compare strings program class file. String "hello" is greater than "Hello" because the ...

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

Pages