C++ list

C++ Program to print hello world
C++ Program to find a given number is even (or) odd.
C++ Program to find a given number is Prime (or) not.
C++ Program to check given string is palindrome (or) not.
C++ Program to calculate GCD/HCF of two(2) numbers
C++ Program to calculate LCM of two(2) numbers
C++ Program to generate Fibonacci series
C++ Program to swap two integers using temp variable
C++ Program to swap two integers without temp variable
C++ Program to find area of a circle
C++ Program to find area of a rectangle
C++ Program to find area of a square
C++ Program to sort a list of integers in ascending order
C++ Program to sort a list of integers in descending order
C++ Program to find factorial of a number
C++ Program to find FACTORS of a given number
C++ Program to check a given numbers is positive,negative (or) zero
C++ Program to find average of n numbers
C++ Program to find BIG&SMALL number among two given numbers.
C++ Program to calculate cube of a given number
C++ Program to find sum of cubes of n natural numbers
C++ Program to find a given number is Composite (or) not.
C++ Program to find frequency count in a given text
C++ Program to find maximum n minimum in a list of numbers
C++ Program to convert mile into km and vice-versa
C++ Program to find sum of n natural numbers
C++ Program to print composite numbers between 1 to n.
C++ Program to print cube(s) from 1 to n
C++ Program to find prime number between 1 and n
C++ Program to print square(s) from 1 to n
C++ Program to find sum of squares of n natural numbers
C++ Program to find a given number is STRONG or not.
C++ Program to find sum of digits of a given number
C++ Program to calculate square of a given number
C++ Program to find a given character is vowel (or) consonant.
C++ Program to print multiplication table of a given number.
C++ Program to generate nth term in Fibonacci series
C++ Program to print prime factors of given number
C++ Program to check given string is palindrome without library function
C++ program to calculate x power n(XN)
C++ program to calculate x power n(X^N) using recursion
C++ program to calculate perfect number

No comments:

Post a Comment

To convert from Upper case to lowercase(A to a)

//converting from Upper to lower(A to a) import java.util.*; class case { public static void main(String args[]) { System.out.pr...