Already have an account? Get multiple benefits of using own account!
Login in your account..!
Remember me
Don't have an account? Create your account in less than a minutes,
Forgot password? how can I recover my password now!
Enter right registered email to receive password!
Aim: To implement a program to convert distance given in feet and inches into meters and centimeters and vice versa.
Code:
class mcm;
class inchft
{
float ft;
float inch;
public:
friend void convert(inchft,mcm);
};
class mcm
float m;
float cm;
void convert(inchft a,mcm b)
int ch,i,c;
do
cout<<"\n1.Feet & inches to Meters & centimeters";
cout<<"\n2. Meters & Centimeters to Feet & inches";
cout<<"\n0. Exit\nEnter choice:";
cin>>ch;
switch(ch)
case 1:
cout<<"Enter measurement in feet & inches:";
cout<<"ft:";
cin>>a.ft;
cout<<"inch:";
cin>>a.inch;
cout<<"\nYou entered:"< i=(a.inch+(12.0*a.ft)); c=2.5*i; c=ceil(c); b.cm=c%100; b.m=(c-b.cm)/100; cout<<"\n\nAfter conversion:"< break; case 2: cout<<"Enter measurement in meters & centimeters:"; cout<<"m:"; cin>>b.m; cout<<"cm:"; cin>>b.cm; cout<<"\nYou entered:"< c=(b.cm+(100*b.m)); i=0.4*c; i=ceil(i); a.inch=i%12; a.ft=(i-a.inch)/12; cout<<"\n\nAfter conversion:"< break; case 0: break; } }while(ch!=0); } void main() { clrscr(); inchft a; mcm b; convert(a,b); getch(); } Output: 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:1 Enter measurement in feet & inches:ft:20 inch:10 You entered:20 ft 10 inches After conversion:6 m 25 cm 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:2 Enter measurement in meters & centimeters:m:6 cm:25 You entered:6 m 25 cm After conversion:20 ft 10 inches 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:0
i=(a.inch+(12.0*a.ft));
c=2.5*i;
c=ceil(c);
b.cm=c%100;
b.m=(c-b.cm)/100;
cout<<"\n\nAfter conversion:"< break; case 2: cout<<"Enter measurement in meters & centimeters:"; cout<<"m:"; cin>>b.m; cout<<"cm:"; cin>>b.cm; cout<<"\nYou entered:"< c=(b.cm+(100*b.m)); i=0.4*c; i=ceil(i); a.inch=i%12; a.ft=(i-a.inch)/12; cout<<"\n\nAfter conversion:"< break; case 0: break; } }while(ch!=0); } void main() { clrscr(); inchft a; mcm b; convert(a,b); getch(); } Output: 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:1 Enter measurement in feet & inches:ft:20 inch:10 You entered:20 ft 10 inches After conversion:6 m 25 cm 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:2 Enter measurement in meters & centimeters:m:6 cm:25 You entered:6 m 25 cm After conversion:20 ft 10 inches 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:0
break;
case 2:
cout<<"Enter measurement in meters & centimeters:";
cout<<"m:";
cin>>b.m;
cout<<"cm:";
cin>>b.cm;
cout<<"\nYou entered:"< c=(b.cm+(100*b.m)); i=0.4*c; i=ceil(i); a.inch=i%12; a.ft=(i-a.inch)/12; cout<<"\n\nAfter conversion:"< break; case 0: break; } }while(ch!=0); } void main() { clrscr(); inchft a; mcm b; convert(a,b); getch(); } Output: 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:1 Enter measurement in feet & inches:ft:20 inch:10 You entered:20 ft 10 inches After conversion:6 m 25 cm 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:2 Enter measurement in meters & centimeters:m:6 cm:25 You entered:6 m 25 cm After conversion:20 ft 10 inches 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:0
c=(b.cm+(100*b.m));
i=0.4*c;
i=ceil(i);
a.inch=i%12;
a.ft=(i-a.inch)/12;
cout<<"\n\nAfter conversion:"< break; case 0: break; } }while(ch!=0); } void main() { clrscr(); inchft a; mcm b; convert(a,b); getch(); } Output: 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:1 Enter measurement in feet & inches:ft:20 inch:10 You entered:20 ft 10 inches After conversion:6 m 25 cm 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:2 Enter measurement in meters & centimeters:m:6 cm:25 You entered:6 m 25 cm After conversion:20 ft 10 inches 1.Feet & inches to Meters & centimeters 2. Meters & Centimeters to Feet & inches 0. Exit Enter choice:0
case 0:
}
}while(ch!=0);
void main()
clrscr();
inchft a;
mcm b;
convert(a,b);
getch();
Output:
1.Feet & inches to Meters & centimeters
2. Meters & Centimeters to Feet & inches
0. Exit
Enter choice:1
Enter measurement in feet & inches:ft:20
inch:10
You entered:20 ft 10 inches
After conversion:6 m 25 cm
Enter choice:2
Enter measurement in meters & centimeters:m:6
cm:25
You entered:6 m 25 cm
After conversion:20 ft 10 inches
Enter choice:0
Question: a) Give two uses of NFS. b) Give one advantage of using NFS. c) Explain the following lines as they would be interpreted in the /etc/exports file i. /usr/local
Program is to search for a given character in a string: Program is to search for a given character in a string and print point of match char *stsearch(char *string, char sea
Draw a circle in c program: void main() { clrscr(); int i,r=50,t,j,x,y; int gd,gm; gd =DETECT; initgraph(&gd,&gm,""); for(x=50;x for(y=50;y { i
C Program for FUNCTION OF COUNT THE INTEREST float si(float,float,float); void main() { float p=0,r=0,n=0,k=0; clrscr(); printf("E
One person who is specialist at programming and solving problems with a computer Project Description: Dear Potential computer, hardware, programming and software genius, I
C Program to check FACTORIAL main() { int i,j,m,fact,sum=0; clrscr(); printf("ENTER THE NO.: "); scanf("%d",&m);
Aim: To implement a program to create, update & display account & admin record of person using display account & admin records of person using virtual base class.. Code:
Structures A structure is a derived data type. It is a combination of logically related data items. Unlike arrays, which are a collection of such as data types, structures can
There are formal ways of reducing Boolean expressions in order to minimize the logic circuit. The two elementary ways of minimization are using Boolean expressions/De Morgan Theore
Explain the terms- Substitutability and Extensibility Substitutability - The objects of a properly derived class can be safely and easily substituted for an object of its
Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!
whatsapp: +1-415-670-9521
Phone: +1-415-670-9521
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd