Archive for March 2019
Write a program in C++ to find area of Triangle, Rectangle or Circle using IF ELSE (must be menu driven)
#include <iostream.h>
#include <conio.h>
int main() {
int shape, a, b;
char ans;
Repeat:
system("CLS");
cout << "Select Shape:" << endl;
cout << "1.Triangle" << endl;
cout.
Write a program in C++ to find whether the entered year is LEAP YEAR or not
#include <iostream.h>
#include <conio.h>
int main() {
int year;
cout << "Enter Year: ";
cin >> year;
(year%4)==0 ? cout<<"Leap Year" : cout<<"NOT Leap Year";
getch();
return.
Write a program in C++ to find SIMPLE INTEREST
#include <iostream.h>
#include <conio.h>
int main() {
//p=principle, r=rate, t=time in years
float p, r, t;
cout << "Principle: ";
cin >> p;
cout << "Rate: ";
cin >> r;
.
Write a program in C++ to find highest of 3 numbers using conditional operator
#include <iostream.h>
#include <conio.h>
int main() {
int a, b, c, big;
cout << "First No: ";
cin >> a;
cout << "Second No: ";
cin >> b;
cout << "Third No: ";
.