Write a program in C++ to print Fibonacci series upto number entered by user
#include <iostream.h>
#include <conio.h>
int main() {
int n, c, first = 0, second = 1, next;
cout<<"*** FIBONACCI SERIES ***"<<endl;
cout << "Enter number of terms: ";
cin >> n;
cout <<.
Write a program in C++ to find factorial of entered number
#include <iostream.h>
#include <conio.h>
int main() {
int num,factorial=1;
cout << "Enter Number: ";
cin >> num;
for (int a=1;a<=num;a++) {
factorial=factorial*a;
}
cout<<"Factorial: "<< factorial.
Write a program in C++ to check whether the entered number if prime number or not
#include <iostream.h>
#include <conio.h>
int main() {
{
int num, i, count = 0;
cout << "Enter the number to be checked : ";
cin >> num;
if (num == 0)
{
cout << "\n" << num <<.
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: ";
.