Monthly Archive: December 2014

0

Java Program to Find Next Prime

This is the Java program to find the next prime NextPrime[n] gives the next prime above n import java.io.*; class nxtprm { public static void main(String[] args) { int n=0,j,flag=0,i=0; System.out.println(“Enter the Limit”); DataInputStream...

0

C Program to Implement Number System Conversion

This is the C program to implement number system conversion,it converts 1.Decimal to Hexadecimal 2.Hexadecimal to Decimal #include #include #include main() { int ch; printf(“Choose any option 1.Decimal to Hexadecimal 2.Hexadecimal to Decimaln”); scanf(“%d”,&ch);...

0

C Program to Find LCM

This is the C Program to find lcm of two numbers LCM=Product of two Numbers/GCD In arithmetic and number theory, the least common multiple (also called the lowest common multiple or smallest common multiple)...

0

C Program to Find Mode

The mode is the value that appears most often in a set of data. The mode of a discrete probability distribution is the value x at which its probability mass function takes its maximum...

0

C Program to Perform Matrix Operation

This is the C program to perform matrix operations such as addition,division and inverse #include int mat1[10][10],mat2[10][10],i,j,k,row1,row2,col1,col2,res[10][10]; char ch; main() { printf(“nChoose any Optionn1.Matrix-Additionn2.Matrix-Multiplicationn3.Matrix-Transposen”); scanf(“%c”,&ch); switch(ch) { case ‘1’:matadd(); break; case ‘2’:matmul(); break; case...