Friday, 29 April 2016

Program to find area of circle

In this C++ program we will find area of circle by entering its radius or diameter //Code Starts #include <iostream> #define PI 3.14159 using namespace std; float AreaOfCircle(float radius); float AreaWithDiameter(float diameter); int main() {     float radius,diameter,circleArea;  ...
Share:

Program to Find Prime numbers in given range

find prime numbers between given range Write a c++ program in which user will enter start and end of range ininteger  Program should display every prime number between range and at the end total number of prime numbers found in range. Do the same program with separate function which receives two parameters for range calculate result and display output like...
Share:

Wednesday, 27 April 2016

Write a C++ program to 1. Initialize Matrices 2. Print Matrices 3. Multiply Matrices 4. Transpose of 2nd Matrix 5. Move Row and Column of 2nd Matrix 6. Quit

Exercise 5) Matrices Write a program that shows a menu such as figure 2.1 and does the following described tasks for entered number between 1 and 6. The instruction menu: 1. Initialize Matrices 2. Print Matrices 3. Multiply Matrices 4. Transpose of 2nd Matrix 5. Move Row and Column of 2nd Matrix 6. Quit Please enter your requested instruction (1..6)? Note that to do the specific...
Share: