You are here

Page not found

Search results

  1. Java program to convert Fahrenheit to Celsius

    Java program to convert Fahrenheit to Celsius: This code does temperature conversion ... = window.adsbygoogle || []).push({}); Java temperature conversion program import java.util.* ; ...

    devyog - 04/12/2019 - 19:46

  2. Java program to print alphabets

    Java program to print letters (i.e., a, b, c, ..., z in lower case) on the screen using a loop. Java program class Alphabets {   public static ...

    devyog - 04/12/2019 - 09:16

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

    devyog - 05/12/2019 - 18:46

  4. Palindrome in C

    C program to check if a string or a number is palindrome or not . A palindrome ... then the string is a palindrome otherwise not. C program to check palindrome without using string functions . Some palindrome ... || []).push({}); Palindrome program in C language #include <stdio.h> #include <string.h> ...

    devyog - 14/10/2020 - 19:48

  5. Linear search in Java

    Java program for linear search: Linear search is straightforward; to check if an ...     System . out . println ( "Enter value to find" ) ;     search = in. nextInt ( ) ;     ...

    devyog - 05/12/2019 - 08:57

  6. sqrt in C

    ... a number. To use it, include the "math.h" header file in the program. Declaration: double sqrt(double); Square root in C using sqrt ... decimal digits. Output of program: C program to find square root of numbers from 1 to 100 #include <stdio.h> ...

    devyog - 04/11/2020 - 13:23

  7. Transpose of a matrix in C

    Transpose of a matrix in C language: This C program prints transpose of a matrix. To obtain it, we interchange rows and ... || []).push({}); C program to find transpose of a matrix #include <stdio.h>   int main ( ...

    devyog - 13/12/2019 - 20:54

  8. log function in C

    ... number. Declaration: double log(double); C program to find logarithm of a number #include <stdio.h> #include <math.h> ...

    devyog - 27/11/2019 - 18:40

  9. If else program in Java

    The if-else Java program uses if-else to execute statement(s) when a condition holds. Below is a simple application that explains the usage of if-else in Java programming language. In the program, a user input marks obtained in an ...

    devyog - 04/12/2019 - 00:32

  10. Interface in Java

    Interface in Java: Java interfaces are like Java classes, but they contain only static final ...   // methods declaration } Interface program in Java In our program, we create an interface named Info that ...

    devyog - 05/12/2019 - 08:26

Pages