Programme:
#include<iostream>
using namespace std;
int main()
{
char ch;
cout<<"Enter an alphabet=";
cin>>ch;
{
if(ch=='A'||ch=='a'||ch=='E'||ch=='e'||ch=='I'||ch=='i'||ch=='O'||ch=='o'||ch=='U'||ch=='u')
cout<<ch<<":is a vowel";
else
cout<<ch<<":is...
Adds
Monday, January 21, 2019
undefined
201
Programe
#include <iostream>
using namespace std;
int main()
{
int n ;
cout<<"Enter A Number=";
cin>>n;
{
if(n%2==0)
cout<<n<<":IS Even Number";
else
cout<<n<<":IS odd Number";
}
}...
Programe
#include<iostream>
#include<conio.h>
#include<string>
#include<iomanip>
using namespace std;
struct cricketer
{
char name[15];
int runs;
int innings;
int tno;
float avg;
};
int main()
{
int runs,innings,i;
float avg;
cricketer rec[5];
cout<<"\nEnter...
undefined
201
Programme
#include <iostream>
using namespace std;
int main()
{
double distance,speed,time;
cout<<"Enter distance in kilometer:";
cin>>distance;
cout<<"Enter speed of your vehicle (Mph):";
cin>>speed;
{
time=distance/speed;
cout<<"Time required To Reach ...
undefined
201
Programme:
#include<iostream>
using namespace std;
int main()
{
int n,age;
cout<<"Enter Your Age:";
cin>>n;
switch(n)
{
case 1 ...10:
cout<<"Kid";
break;
case 11 ...15:
cout<<"childhood";
break;
case 16 ...20:
cout<<"Young";
...
undefined
201
Programme:
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int a,b,result;
char option,n;
do
{
cout<<"What Opration you to do want"<<endl;
cout<<"+.Addition"<<endl;
cout<<"-.Subtraction"<<endl;
cout<<"*.Multiply"<<endl;
...
undefined
201
Arrays
An Array is a group of consecutive memory location with same name and type. Simple variable is a single memory location with a unique name and type.But an array is a collection of different adjacant memory location. All these memory locations have one collective name and type.The Memory locations in the array...