Information Technology
Units Converter
Submitted By
Shekh Mod. Usman
Haider
www.dezyneecole.com
Project Report
On
C++ Programming
At
Dezyne E´cole College
Ajmer
Submitted to
Dezyne E´cole College
Towards the
Partial Fulfillment on
Bachelors of Computer Application
By
Shekh Mohammad Usman Haider
Dezyne E´cole College
106/10 Civil Line, Ajmer
Tel – 0145-2624679
Www.dezyneecole.com
2016
Acknowledgement
I Usman Haider, Student On Dezyne E´cole College, An Extremely
Grateful To Each And Every Individual. Who Has Contributed In
Successful Completion Of My Project. I Express My Gratitude
Towards Dezyne E ´cole College For Their Guidance and Contrast
Supervision As Well As For Providing The Necessary Information And
Support Regarding The Completion Of Project.
Thank You
P a g e | 1
1 | P a g e
P a g e | 2
2 | P a g e
P a g e | 3
3 | P a g e
Source Code:
#include<iostream.h>
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<iomanip.h>
#include<math.h>
class converter
{
public:
long int input,i,y,input1,in;
float v_input;
void small_border()
{
for(i=24; i<=59;i++)
{
gotoxy(i,8);
P a g e | 4
4 | P a g e
printf("%c",205);
}
for(i=24; i<=59;i++)
{
gotoxy(i,15);
printf("%c",205);
}
for(i=7; i<=16;i++)
{
gotoxy(25,i);
printf("%c",186);
}
for(i=7; i<=16;i++)
{
gotoxy(58,i);
printf("%c",186);
}
}
void border()
{
for(i=16; i<=60;i++)
{
gotoxy(i,3);
printf("%c",220);
}
for(i=16; i<=60;i++)
{
gotoxy(i,23);
P a g e | 5
5 | P a g e
printf("%c",220);
}
for(i=3; i<=23;i++)
{
gotoxy(15,i);
printf("%c",220);
}
for(i=3; i<=23;i++)
{
gotoxy(61,i);
printf("%c",220);
}
}
void page1()
{
clrscr();
border();
gotoxy(27,6);
cout<<"::Welcome To Converter::";
gotoxy(20,19);
cout<<"Press Y To Countinue E For Exit::";
gotoxy(53,19);
y=getch();
if(y=='Y' || y=='y')
{
clrscr();
border();
main_window();
}
else if(y=='e' || y=='E')
P a g e | 6
6 | P a g e
{
exit(0);
}
else
{
clrscr();
border();
page1();
}
}
void main_window()
{
border();
gotoxy(27,6);
cout<<"::Choose Do You Want::";
gotoxy(20,9);
cout<<"1 For Area Converter.";
gotoxy(20,11);
cout<<"2 For Weight Converter.";
gotoxy(20,13);
cout<<"3 For Temprature Converter.";
gotoxy(20,15);
cout<<"4 For Lenght Converter.";
gotoxy(20,17);
cout<<"5 For Currency Converter.";
gotoxy(20,19);
cout<<"6.Back";
gotoxy(20,21);
cout<<"Choose Your Option::";
input=getch();
P a g e | 7
7 | P a g e
if(input=='1')
{
clrscr();
border();
area();
}
else if(input=='2')
{
clrscr();
border();
weight();
}
else if(input=='3')
{
clrscr();
border();
temprature();
}
else if(input=='4')
{
clrscr();
border();
lenght();
}
else if(input=='5')
{
clrscr();
border();
curr();
}
P a g e | 8
8 | P a g e
else if(input=='6')
{
clrscr();
border();
page1();
}
else
{
clrscr();
border();
main_window();
}
}
void area()
{
clrscr();
border();
gotoxy(27,6);
cout<<"::Choose Do You Want::";
gotoxy(20,9);
cout<<"1 For Squrefeet To Other.";
gotoxy(20,11);
cout<<"2 For Hactares To Other.";
gotoxy(20,13);
cout<<"3 For Square Meters To Other.";
gotoxy(20,15);
cout<<"4 For Acres To Other.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(20,21);
P a g e | 9
9 | P a g e
cout<<"Press B To Back E for Exit.";
gotoxy(40,19);
input=getch();
if(input=='1')
{
clrscr();
a:
border();
gotoxy(20,9);
cout<<"1 For Squarefeet To Hactares.";
gotoxy(20,11);
cout<<"2 For Squarefeet To Square Meter.";
gotoxy(20,13);
cout<<"3 For Squarefeet To Acres.";
gotoxy(20,15);
cout<<"4 For Squarefeet To Sqaure Kilometer.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
area();
}
else if(input1=='e' || input1=='E')
{
P a g e | 10
10 | P a g e
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Square Feet::";
gotoxy(30,12);
cout<<"Hectares::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/107640;
gotoxy(44,12);
cout<<setprecision(2)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto a;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
P a g e | 11
11 | P a g e
clrscr();
goto a;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Square Feet::";
gotoxy(30,12);
cout<<"Square Meter::";
gotoxy(44,11);
cin>>v_input;
int a=12;
v_input=v_input/10.7640;
gotoxy(44,12);
cout<<setprecision(2)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto a;
}
else if(in=='e' || in=='E')
{
page1();
P a g e | 12
12 | P a g e
}
else
{
clrscr();
goto a;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Square Feet::";
gotoxy(30,12);
cout<<"Acres::";
gotoxy(44,11);
cin>>v_input;
int a=12;
v_input=a*a/2.295684-05;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto a;
}
P a g e | 13
13 | P a g e
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto a;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Square Feet::";
gotoxy(30,12);
cout<<"Sq. Kilometers::";
gotoxy(44,11);
cin>>v_input;
int a=12;
v_input=a*a/107640;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
P a g e | 14
14 | P a g e
clrscr();
goto a;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto a;
}
}
else
{
clrscr();
main_window();
}
}
else if(input=='2')
{
clrscr();
b:
border();
gotoxy(20,9);
cout<<"1 For Hactares To Square Meters.";
gotoxy(20,11);
cout<<"2 For Hactares To Acres.";
gotoxy(20,13);
cout<<"3 For Hactares To Square Feet.";
P a g e | 15
15 | P a g e
gotoxy(20,15);
cout<<"4 For Hactares To Suqare Kilometers.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
area();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Hectares::";
gotoxy(30,12);
cout<<"Square Meter::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.00010000;
gotoxy(44,12);
P a g e | 16
16 | P a g e
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto b;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto b;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Hectares::";
gotoxy(30,12);
cout<<"Acres::";
gotoxy(44,11);
cin>>v_input;
P a g e | 17
17 | P a g e
v_input=v_input*2.4711;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto b;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto b;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Hectares::";
gotoxy(30,12);
cout<<"Square Feet::";
P a g e | 18
18 | P a g e
gotoxy(44,11);
cin>>v_input;
v_input=v_input*107640;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto b;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto b;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Hectares ::";
P a g e | 19
19 | P a g e
gotoxy(30,12);
cout<<"S Kilometers::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/100.00;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto b;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto b;
}
}
else
{
clrscr();
goto b;
P a g e | 20
20 | P a g e
}
}
else if(input=='3')
{
clrscr();
c:
border();
gotoxy(20,9);
cout<<"1 For Square Meters To Hactares.";
gotoxy(20,11);
cout<<"2 For Square Meters To Acres.";
gotoxy(20,13);
cout<<"3 For Square Meters To Square Feet.";
gotoxy(20,15);
cout<<"4 For Square Meters To Square Kilometers.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
area();
}
else if(input1=='e' || input1=='E')
{
page1();
P a g e | 21
21 | P a g e
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Square Meter::";
gotoxy(30,12);
cout<<"Hectares::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/10000;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto c;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
P a g e | 22
22 | P a g e
goto c;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Square Meter::";
gotoxy(30,12);
cout<<"Acres::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*0.00024711;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto c;
}
else if(in=='e' || in=='E')
{
page1();
}
else
P a g e | 23
23 | P a g e
{
clrscr();
goto c;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Square Meter::";
gotoxy(30,12);
cout<<"Square Feet::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*10.764;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto c;
}
else if(in=='e' || in=='E')
{
page1();
P a g e | 24
24 | P a g e
}
else
{
clrscr();
goto c;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Square Meter::";
gotoxy(30,12);
cout<<"S Kilometers::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/1000000;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto c;
}
else if(in=='e' || in=='E')
P a g e | 25
25 | P a g e
{
page1();
}
else
{
clrscr();
goto c;
}
}
else
{
clrscr();
main_window();
}
}
else if(input=='4')
{
clrscr();
d:
border();
gotoxy(20,9);
cout<<"1 For Acres To Hectares.";
gotoxy(20,11);
cout<<"2 For Acres To Square Meters.";
gotoxy(20,13);
cout<<"3 For Acres To Square Feet.";
gotoxy(20,15);
cout<<"4 For Acres To Suqare Kilometers.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
P a g e | 26
26 | P a g e
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
area();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Acres::";
gotoxy(30,12);
cout<<"Hectares::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/2.4711;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
P a g e | 27
27 | P a g e
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto d;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto d;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Acres::";
gotoxy(30,12);
cout<<"Square Meter::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.00024711;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
P a g e | 28
28 | P a g e
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto d;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto d;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Acres::";
gotoxy(30,12);
cout<<"Square Feet::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*43560;
gotoxy(44,12);
P a g e | 29
29 | P a g e
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto d;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto d;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Acres::";
gotoxy(30,12);
cout<<"S Kilometer::";
gotoxy(44,11);
cin>>v_input;
P a g e | 30
30 | P a g e
v_input=v_input/247.11;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto d;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto d;
}
}
else
{
clrscr();
goto d;
}
}
else
P a g e | 31
31 | P a g e
{
clrscr();
main_window();
}
}
void weight()
{
gotoxy(27,6);
cout<<"::Choose Do You Want::";
gotoxy(20,9);
cout<<"1 For Pounds To Other.";
gotoxy(20,11);
cout<<"2 For kilograms To Other.";
gotoxy(20,13);
cout<<"3 For Ounces To Other.";
gotoxy(20,15);
cout<<"4 For Stone To Other.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(40,19);
input=getch();
if(input=='b' || input=='B')
{
clrscr();
border();
main_window();
}
P a g e | 32
32 | P a g e
if(input=='e' || input=='E')
{
page1();
}
else if(input=='1')
{
clrscr();
l:
border();
gotoxy(20,9);
cout<<"1 For Pounds To Kilogrames.";
gotoxy(20,11);
cout<<"2 For Pounds To Ounces.";
gotoxy(20,13);
cout<<"3 For Pounds To Stone.";
gotoxy(20,15);
cout<<"4 For Pounds To Grams.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
weight();
}
else if(input1=='e' || input1=='E')
{
P a g e | 33
33 | P a g e
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Pounds::";
gotoxy(30,12);
cout<<"kilograms::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/2.2046;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto l;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
P a g e | 34
34 | P a g e
clrscr();
goto l;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Pounds::";
gotoxy(30,12);
cout<<"Ounces::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*16.000;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto l;
}
else if(in=='e' || in=='E')
{
page1();
}
P a g e | 35
35 | P a g e
else
{
clrscr();
goto l;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Pounds::";
gotoxy(30,12);
cout<<"Stones::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*0.071429;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto l;
}
else if(in=='e' || in=='E')
{
P a g e | 36
36 | P a g e
page1();
}
else
{
clrscr();
goto l;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Pounds::";
gotoxy(30,12);
cout<<"Grams::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.0022046;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto l;
}
P a g e | 37
37 | P a g e
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto l;
}
}
else
{
clrscr();
main_window();;
}
}
else if(input=='2')
{
clrscr();
m:
border();
gotoxy(20,9);
cout<<"1 For Kilogrames To Pounds.";
gotoxy(20,11);
cout<<"2 For Kilogrames To Ounces.";
gotoxy(20,13);
cout<<"3 For Kilogrames To Stone.";
gotoxy(20,15);
cout<<"4 For Kilogrames To Grams.";
gotoxy(20,21);
P a g e | 38
38 | P a g e
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
weight();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kilograms::";
gotoxy(30,12);
cout<<"Pounds::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*2.2046;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
P a g e | 39
39 | P a g e
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto m;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto m;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kilograms::";
gotoxy(30,12);
cout<<"Ounces::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*35.274;
gotoxy(44,12);
cout<<setprecision(4)<<v_input;
P a g e | 40
40 | P a g e
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto m;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto m;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kilograms::";
gotoxy(30,12);
cout<<"Stones::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*0.15747;
P a g e | 41
41 | P a g e
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto m;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto m;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kilograms::";
gotoxy(30,12);
cout<<"Grams::";
gotoxy(44,11);
P a g e | 42
42 | P a g e
cin>>v_input;
v_input=v_input/0.0010000;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto m;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto m;
}
}
else
{
clrscr();
goto m;
}
}
else if(input=='3')
P a g e | 43
43 | P a g e
{
clrscr();
n:
border();
gotoxy(20,9);
cout<<"1 For Ounce To Kilograms.";
gotoxy(20,11);
cout<<"2 For Ounce To Pounds.";
gotoxy(20,13);
cout<<"3 For Ounce To Stone.";
gotoxy(20,15);
cout<<"4 For Ounce To Grams.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
weight();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
P a g e | 44
44 | P a g e
small_border();
gotoxy(30,11);
cout<<"Ounces::";
gotoxy(30,12);
cout<<"Kilograms::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/35.274;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto n;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto n;
}
}
else if(input1=='2')
P a g e | 45
45 | P a g e
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Ounces::";
gotoxy(30,12);
cout<<"Pounds::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*0.062500;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto n;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto n;
}
P a g e | 46
46 | P a g e
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Ounces::";
gotoxy(30,12);
cout<<"Stones::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*0.0044643;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto n;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
P a g e | 47
47 | P a g e
goto n;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Ounces::";
gotoxy(30,12);
cout<<"Grams::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.35274;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto n;
}
else if(in=='e' || in=='E')
{
page1();
}
else
P a g e | 48
48 | P a g e
{
clrscr();
goto n;
}
}
else
{
clrscr();
goto n;
}
}
else if(input=='4')
{
clrscr();
o:
border();
gotoxy(20,9);
cout<<"1 For Stone To Kilograms.";
gotoxy(20,11);
cout<<"2 For Stone To Pounds.";
gotoxy(20,13);
cout<<"3 For Stone To Ounces.";
gotoxy(20,15);
cout<<"4 For Stone To Grams.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
input1=getch();
if(input1=='b' || input1=='B')
P a g e | 49
49 | P a g e
{
clrscr();
border();
weight();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Stones::";
gotoxy(30,12);
cout<<"Kilograms::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.15747;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto o;
P a g e | 50
50 | P a g e
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto o;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Stones::";
gotoxy(30,12);
cout<<"pounds::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*14.000;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
P a g e | 51
51 | P a g e
clrscr();
goto o;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto o;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Stones::";
gotoxy(30,12);
cout<<"Ounces::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*224.00;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
P a g e | 52
52 | P a g e
if(in=='b' || in=='B')
{
clrscr();
goto o;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto o;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Stones::";
gotoxy(30,12);
cout<<"Grams::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.00015747;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
P a g e | 53
53 | P a g e
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto o;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto o;
}
}
else
{
clrscr();
main_window();;
}
}
}
void temprature()
{
gotoxy(27,6);
cout<<"::Choose Do You Want::";
gotoxy(20,9);
P a g e | 54
54 | P a g e
cout<<"1 For Celsius To Other.";
gotoxy(20,11);
cout<<"2 For Fahrenhit To Other.";
gotoxy(20,13);
cout<<"3 For Kelvin To Other.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(40,19);
input=getch();
if(input=='b' || input=='B')
{
clrscr();
border();
main_window();
}
else if(input=='1')
{
clrscr();
e:
border();
gotoxy(20,9);
cout<<"1 For Celsius To Fahrenheit.";
gotoxy(20,11);
cout<<"2 For Celsius To Kevlvin.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
P a g e | 55
55 | P a g e
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
temprature();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Celcius::";
gotoxy(30,12);
cout<<"Fahreheit::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*1.8+32;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
P a g e | 56
56 | P a g e
{
clrscr();
goto e;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto e;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Celcius::";
gotoxy(30,12);
cout<<"Kelvin::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input+273.15;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
P a g e | 57
57 | P a g e
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto e;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto e;
}
}
}
else if(input=='2')
{
clrscr();
f:
border();
gotoxy(20,9);
cout<<"1 For Fahrenheit To Celsius.";
gotoxy(20,11);
cout<<"2 For Fehrenheit To Kelvin.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
P a g e | 58
58 | P a g e
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
temprature();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Fahrenheit::";
gotoxy(30,12);
cout<<"Celcius::";
gotoxy(44,11);
cin>>v_input;
v_input=(v_input-32)/1.8;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
P a g e | 59
59 | P a g e
if(in=='b' || in=='B')
{
clrscr();
goto f;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto f;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Fahrenheit::";
gotoxy(30,12);
cout<<"Kelvin::";
gotoxy(44,11);
cin>>v_input;
v_input=(v_input+459.67)*5/9;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
P a g e | 60
60 | P a g e
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto f;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
goto f;
}
}
}
else if(input=='3')
{
clrscr();
g:
border();
gotoxy(20,9);
cout<<"1 For Kelvin To Celsius.";
gotoxy(20,11);
cout<<"2 For Kelvin Fehrenheit.";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
P a g e | 61
61 | P a g e
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
temprature();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kelvin::";
gotoxy(30,12);
cout<<"Celcius::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input-273.15;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
P a g e | 62
62 | P a g e
{
clrscr();
goto g;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto g;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kelvin::";
gotoxy(30,12);
cout<<"Fahrenheit::";
gotoxy(44,11);
cin>>v_input;
v_input=(v_input*9/5)-459.67;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
P a g e | 63
63 | P a g e
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto g;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto g;
}
}
else
{
clrscr();
main_window();
}
}
}
void lenght()
{
gotoxy(27,6);
cout<<"::Choose Do You Want::";
gotoxy(20,9);
cout<<"1 For Miles To Other.";
P a g e | 64
64 | P a g e
gotoxy(20,11);
cout<<"2 For Kilometers To Other.";
gotoxy(20,13);
cout<<"3 For Meter To Other.";
gotoxy(20,15);
cout<<"4 For Feet To Other.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(40,19);
input=getch();
if(input=='b' || input=='B')
{
clrscr();
border();
main_window();
}
else if(input=='1')
{
clrscr();
h:
border();
gotoxy(20,9);
cout<<"1 For Miles To Kilometers.";
gotoxy(20,11);
cout<<"2 For Miles To Meters.";
gotoxy(20,13);
cout<<"3 For Miles To Centimeters.";
gotoxy(20,15);
P a g e | 65
65 | P a g e
cout<<"4 For Miles To Milimeters";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
lenght();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Miles::";
gotoxy(30,12);
cout<<"Kilometers::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.62137;
gotoxy(44,12);
cout<<v_input;
P a g e | 66
66 | P a g e
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto h;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto h;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Miles::";
gotoxy(30,12);
cout<<"Meters::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.0062137;
P a g e | 67
67 | P a g e
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto h;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto h;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Miles::";
gotoxy(30,12);
cout<<"Centimeters::";
gotoxy(44,11);
P a g e | 68
68 | P a g e
cin>>v_input;
v_input=v_input/6.213711-06;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto h;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto h;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Miles::";
gotoxy(30,12);
P a g e | 69
69 | P a g e
cout<<"Milimeters::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/6.213711-07;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto h;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto h;
}
}
}
else if(input=='2')
{
clrscr();
i:
P a g e | 70
70 | P a g e
border();
gotoxy(20,9);
cout<<"1 For Kilometers To Meters.";
gotoxy(20,11);
cout<<"2 For Kilometers To Miles.";
gotoxy(20,13);
cout<<"3 For Kilometers To Centimeters.";
gotoxy(20,15);
cout<<"4 For Kilometers To Milimeters";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
lenght();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
P a g e | 71
71 | P a g e
cout<<"Kilometers::";
gotoxy(30,12);
cout<<"Meters::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.001000;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto i;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto i;
}
}
else if(input1=='2')
{
P a g e | 72
72 | P a g e
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kilometers::";
gotoxy(30,12);
cout<<"Miles::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*0.62137;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto i;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto i;
}
}
P a g e | 73
73 | P a g e
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kilometers::";
gotoxy(30,12);
cout<<"Centimeters::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/1e-05;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto i;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto i;
P a g e | 74
74 | P a g e
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Kilometers::";
gotoxy(30,12);
cout<<"Milimeters::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/1e-06;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto i;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
P a g e | 75
75 | P a g e
clrscr();
goto i;
}
}
}
else if(input=='3')
{
clrscr();
j:
border();
gotoxy(20,9);
cout<<"1 For Meters To Kilometers.";
gotoxy(20,11);
cout<<"2 For Meters To Miles.";
gotoxy(20,13);
cout<<"3 For Meters To Centimeters.";
gotoxy(20,15);
cout<<"4 For Meters To Milimeters";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
lenght();
}
P a g e | 76
76 | P a g e
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Meters::";
gotoxy(30,12);
cout<<"kilometers::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/1000.0;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto j;
}
else if(in=='e' || in=='E')
{
page1();
}
P a g e | 77
77 | P a g e
else
{
clrscr();
goto j;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Meters::";
gotoxy(30,12);
cout<<"Miles::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*0.0062137;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto j;
}
else if(in=='e' || in=='E')
{
P a g e | 78
78 | P a g e
page1();
}
else
{
clrscr();
goto j;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Meters::";
gotoxy(30,12);
cout<<"Centimeters::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.010000;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto j;
}
P a g e | 79
79 | P a g e
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto j;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Meters::";
gotoxy(30,12);
cout<<"Milimeters::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.0010000;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
P a g e | 80
80 | P a g e
goto j;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto j;
}
}
else
{
clrscr();
goto j;
}
}
else if(input=='4')
{
clrscr();
k:
border();
gotoxy(20,9);
cout<<"1 For Feet To Kilometers.";
gotoxy(20,11);
cout<<"2 For Feet To Miles.";
gotoxy(20,13);
cout<<"3 For Feet To Meters.";
gotoxy(20,15);
P a g e | 81
81 | P a g e
cout<<"4 For Feet To Centimeters";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
lenght();
}
else if(input1=='e' || input1=='E')
{
page1();
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Feet::";
gotoxy(30,12);
cout<<"kilometers::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/3280.8;
gotoxy(44,12);
cout<<v_input;
P a g e | 82
82 | P a g e
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto k;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto k;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Feet::";
gotoxy(30,12);
cout<<"Miles::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input*0.00018939;
P a g e | 83
83 | P a g e
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto k;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto k;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Feet::";
gotoxy(30,12);
cout<<"Meters::";
gotoxy(44,11);
P a g e | 84
84 | P a g e
cin>>v_input;
v_input=v_input/3.2808;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto k;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto k;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Feet::";
gotoxy(30,12);
P a g e | 85
85 | P a g e
cout<<"Centimeters::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/0.32808;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto k;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto k;
}
}
else
{
clrscr();
main_window();
}
P a g e | 86
86 | P a g e
}
}
void curr()
{
clrscr();
p:
border();
gotoxy(27,6);
cout<<"::Choose Do You Want::";
gotoxy(20,21);
cout<<"Press B To Back E for Exit.";
gotoxy(20,9);
cout<<"1 For Indian Rupee To US Dollars.";
gotoxy(20,11);
cout<<"2 For Indian Rupee To Australian Dollars.";
gotoxy(20,13);
cout<<"3 For Indian Rupee To Euros.";
gotoxy(20,15);
cout<<"4 For Indian Rupee To British Pounds.";
gotoxy(20,17);
cout<<"5 For Indian Rupee To Canadian Dollars.";
gotoxy(20,19);
cout<<"Choose Your Option::";
gotoxy(40,19);
input1=getch();
if(input1=='b' || input1=='B')
{
clrscr();
border();
main_window();
P a g e | 87
87 | P a g e
}
else if(input1=='1')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Rupee::";
gotoxy(30,12);
cout<<"US Dollar::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/67.048193;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto p;
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
P a g e | 88
88 | P a g e
goto p;
}
}
else if(input1=='2')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Rupee::";
gotoxy(30,12);
cout<<"Australian::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/50.167278;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto p;
}
else if(in=='e' || in=='E')
{
page1();
}
else
P a g e | 89
89 | P a g e
{
clrscr();
goto p;
}
}
else if(input1=='3')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Rupee::";
gotoxy(30,12);
cout<<"Euro::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/75.225088;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto p;
}
else if(in=='e' || in=='E')
{
page1();
P a g e | 90
90 | P a g e
}
else
{
clrscr();
goto p;
}
}
else if(input1=='4')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Rupee::";
gotoxy(30,12);
cout<<"B Pound::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/88.428951;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto p;
}
else if(in=='e' || in=='E')
P a g e | 91
91 | P a g e
{
page1();
}
else
{
clrscr();
goto p;
}
}
if(input1=='5')
{
clrscr();
small_border();
gotoxy(30,11);
cout<<"Rupee::";
gotoxy(30,12);
cout<<"Can. Dollar::";
gotoxy(44,11);
cin>>v_input;
v_input=v_input/50.951223;
gotoxy(44,12);
cout<<v_input;
gotoxy(28,14);
cout<<"Press B To Back E for Exit.";
gotoxy(55,14);
in=getch();
if(in=='b' || in=='B')
{
clrscr();
goto p;
P a g e | 92
92 | P a g e
}
else if(in=='e' || in=='E')
{
page1();
}
else
{
clrscr();
goto p;
}
}
else
{
clrscr();
main_window();
}
}
};
void main()
{
clrscr();
converter x;
x.border();
x.page1();
getch();
}
P a g e | 93
93 | P a g e
THANK YOU

Shikh Mohammad Usman Haidar , BCA Third Year

  • 1.
    Information Technology Units Converter SubmittedBy Shekh Mod. Usman Haider www.dezyneecole.com
  • 2.
    Project Report On C++ Programming At DezyneE´cole College Ajmer Submitted to Dezyne E´cole College Towards the Partial Fulfillment on Bachelors of Computer Application By Shekh Mohammad Usman Haider Dezyne E´cole College 106/10 Civil Line, Ajmer Tel – 0145-2624679 Www.dezyneecole.com 2016
  • 3.
    Acknowledgement I Usman Haider,Student On Dezyne E´cole College, An Extremely Grateful To Each And Every Individual. Who Has Contributed In Successful Completion Of My Project. I Express My Gratitude Towards Dezyne E ´cole College For Their Guidance and Contrast Supervision As Well As For Providing The Necessary Information And Support Regarding The Completion Of Project. Thank You
  • 4.
    P a ge | 1 1 | P a g e
  • 5.
    P a ge | 2 2 | P a g e
  • 6.
    P a ge | 3 3 | P a g e Source Code: #include<iostream.h> #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<iomanip.h> #include<math.h> class converter { public: long int input,i,y,input1,in; float v_input; void small_border() { for(i=24; i<=59;i++) { gotoxy(i,8);
  • 7.
    P a ge | 4 4 | P a g e printf("%c",205); } for(i=24; i<=59;i++) { gotoxy(i,15); printf("%c",205); } for(i=7; i<=16;i++) { gotoxy(25,i); printf("%c",186); } for(i=7; i<=16;i++) { gotoxy(58,i); printf("%c",186); } } void border() { for(i=16; i<=60;i++) { gotoxy(i,3); printf("%c",220); } for(i=16; i<=60;i++) { gotoxy(i,23);
  • 8.
    P a ge | 5 5 | P a g e printf("%c",220); } for(i=3; i<=23;i++) { gotoxy(15,i); printf("%c",220); } for(i=3; i<=23;i++) { gotoxy(61,i); printf("%c",220); } } void page1() { clrscr(); border(); gotoxy(27,6); cout<<"::Welcome To Converter::"; gotoxy(20,19); cout<<"Press Y To Countinue E For Exit::"; gotoxy(53,19); y=getch(); if(y=='Y' || y=='y') { clrscr(); border(); main_window(); } else if(y=='e' || y=='E')
  • 9.
    P a ge | 6 6 | P a g e { exit(0); } else { clrscr(); border(); page1(); } } void main_window() { border(); gotoxy(27,6); cout<<"::Choose Do You Want::"; gotoxy(20,9); cout<<"1 For Area Converter."; gotoxy(20,11); cout<<"2 For Weight Converter."; gotoxy(20,13); cout<<"3 For Temprature Converter."; gotoxy(20,15); cout<<"4 For Lenght Converter."; gotoxy(20,17); cout<<"5 For Currency Converter."; gotoxy(20,19); cout<<"6.Back"; gotoxy(20,21); cout<<"Choose Your Option::"; input=getch();
  • 10.
    P a ge | 7 7 | P a g e if(input=='1') { clrscr(); border(); area(); } else if(input=='2') { clrscr(); border(); weight(); } else if(input=='3') { clrscr(); border(); temprature(); } else if(input=='4') { clrscr(); border(); lenght(); } else if(input=='5') { clrscr(); border(); curr(); }
  • 11.
    P a ge | 8 8 | P a g e else if(input=='6') { clrscr(); border(); page1(); } else { clrscr(); border(); main_window(); } } void area() { clrscr(); border(); gotoxy(27,6); cout<<"::Choose Do You Want::"; gotoxy(20,9); cout<<"1 For Squrefeet To Other."; gotoxy(20,11); cout<<"2 For Hactares To Other."; gotoxy(20,13); cout<<"3 For Square Meters To Other."; gotoxy(20,15); cout<<"4 For Acres To Other."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(20,21);
  • 12.
    P a ge | 9 9 | P a g e cout<<"Press B To Back E for Exit."; gotoxy(40,19); input=getch(); if(input=='1') { clrscr(); a: border(); gotoxy(20,9); cout<<"1 For Squarefeet To Hactares."; gotoxy(20,11); cout<<"2 For Squarefeet To Square Meter."; gotoxy(20,13); cout<<"3 For Squarefeet To Acres."; gotoxy(20,15); cout<<"4 For Squarefeet To Sqaure Kilometer."; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); area(); } else if(input1=='e' || input1=='E') {
  • 13.
    P a ge | 10 10 | P a g e page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Square Feet::"; gotoxy(30,12); cout<<"Hectares::"; gotoxy(44,11); cin>>v_input; v_input=v_input/107640; gotoxy(44,12); cout<<setprecision(2)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto a; } else if(in=='e' || in=='E') { page1(); } else {
  • 14.
    P a ge | 11 11 | P a g e clrscr(); goto a; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Square Feet::"; gotoxy(30,12); cout<<"Square Meter::"; gotoxy(44,11); cin>>v_input; int a=12; v_input=v_input/10.7640; gotoxy(44,12); cout<<setprecision(2)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto a; } else if(in=='e' || in=='E') { page1();
  • 15.
    P a ge | 12 12 | P a g e } else { clrscr(); goto a; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Square Feet::"; gotoxy(30,12); cout<<"Acres::"; gotoxy(44,11); cin>>v_input; int a=12; v_input=a*a/2.295684-05; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto a; }
  • 16.
    P a ge | 13 13 | P a g e else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto a; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Square Feet::"; gotoxy(30,12); cout<<"Sq. Kilometers::"; gotoxy(44,11); cin>>v_input; int a=12; v_input=a*a/107640; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') {
  • 17.
    P a ge | 14 14 | P a g e clrscr(); goto a; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto a; } } else { clrscr(); main_window(); } } else if(input=='2') { clrscr(); b: border(); gotoxy(20,9); cout<<"1 For Hactares To Square Meters."; gotoxy(20,11); cout<<"2 For Hactares To Acres."; gotoxy(20,13); cout<<"3 For Hactares To Square Feet.";
  • 18.
    P a ge | 15 15 | P a g e gotoxy(20,15); cout<<"4 For Hactares To Suqare Kilometers."; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); area(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Hectares::"; gotoxy(30,12); cout<<"Square Meter::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.00010000; gotoxy(44,12);
  • 19.
    P a ge | 16 16 | P a g e cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto b; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto b; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Hectares::"; gotoxy(30,12); cout<<"Acres::"; gotoxy(44,11); cin>>v_input;
  • 20.
    P a ge | 17 17 | P a g e v_input=v_input*2.4711; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto b; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto b; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Hectares::"; gotoxy(30,12); cout<<"Square Feet::";
  • 21.
    P a ge | 18 18 | P a g e gotoxy(44,11); cin>>v_input; v_input=v_input*107640; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto b; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto b; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Hectares ::";
  • 22.
    P a ge | 19 19 | P a g e gotoxy(30,12); cout<<"S Kilometers::"; gotoxy(44,11); cin>>v_input; v_input=v_input/100.00; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto b; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto b; } } else { clrscr(); goto b;
  • 23.
    P a ge | 20 20 | P a g e } } else if(input=='3') { clrscr(); c: border(); gotoxy(20,9); cout<<"1 For Square Meters To Hactares."; gotoxy(20,11); cout<<"2 For Square Meters To Acres."; gotoxy(20,13); cout<<"3 For Square Meters To Square Feet."; gotoxy(20,15); cout<<"4 For Square Meters To Square Kilometers."; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); area(); } else if(input1=='e' || input1=='E') { page1();
  • 24.
    P a ge | 21 21 | P a g e } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Square Meter::"; gotoxy(30,12); cout<<"Hectares::"; gotoxy(44,11); cin>>v_input; v_input=v_input/10000; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto c; } else if(in=='e' || in=='E') { page1(); } else { clrscr();
  • 25.
    P a ge | 22 22 | P a g e goto c; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Square Meter::"; gotoxy(30,12); cout<<"Acres::"; gotoxy(44,11); cin>>v_input; v_input=v_input*0.00024711; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto c; } else if(in=='e' || in=='E') { page1(); } else
  • 26.
    P a ge | 23 23 | P a g e { clrscr(); goto c; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Square Meter::"; gotoxy(30,12); cout<<"Square Feet::"; gotoxy(44,11); cin>>v_input; v_input=v_input*10.764; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto c; } else if(in=='e' || in=='E') { page1();
  • 27.
    P a ge | 24 24 | P a g e } else { clrscr(); goto c; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Square Meter::"; gotoxy(30,12); cout<<"S Kilometers::"; gotoxy(44,11); cin>>v_input; v_input=v_input/1000000; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto c; } else if(in=='e' || in=='E')
  • 28.
    P a ge | 25 25 | P a g e { page1(); } else { clrscr(); goto c; } } else { clrscr(); main_window(); } } else if(input=='4') { clrscr(); d: border(); gotoxy(20,9); cout<<"1 For Acres To Hectares."; gotoxy(20,11); cout<<"2 For Acres To Square Meters."; gotoxy(20,13); cout<<"3 For Acres To Square Feet."; gotoxy(20,15); cout<<"4 For Acres To Suqare Kilometers."; gotoxy(20,21); cout<<"Press B To Back E for Exit.";
  • 29.
    P a ge | 26 26 | P a g e gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); area(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Acres::"; gotoxy(30,12); cout<<"Hectares::"; gotoxy(44,11); cin>>v_input; v_input=v_input/2.4711; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14);
  • 30.
    P a ge | 27 27 | P a g e in=getch(); if(in=='b' || in=='B') { clrscr(); goto d; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto d; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Acres::"; gotoxy(30,12); cout<<"Square Meter::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.00024711; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14);
  • 31.
    P a ge | 28 28 | P a g e cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto d; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto d; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Acres::"; gotoxy(30,12); cout<<"Square Feet::"; gotoxy(44,11); cin>>v_input; v_input=v_input*43560; gotoxy(44,12);
  • 32.
    P a ge | 29 29 | P a g e cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto d; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto d; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Acres::"; gotoxy(30,12); cout<<"S Kilometer::"; gotoxy(44,11); cin>>v_input;
  • 33.
    P a ge | 30 30 | P a g e v_input=v_input/247.11; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto d; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto d; } } else { clrscr(); goto d; } } else
  • 34.
    P a ge | 31 31 | P a g e { clrscr(); main_window(); } } void weight() { gotoxy(27,6); cout<<"::Choose Do You Want::"; gotoxy(20,9); cout<<"1 For Pounds To Other."; gotoxy(20,11); cout<<"2 For kilograms To Other."; gotoxy(20,13); cout<<"3 For Ounces To Other."; gotoxy(20,15); cout<<"4 For Stone To Other."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(40,19); input=getch(); if(input=='b' || input=='B') { clrscr(); border(); main_window(); }
  • 35.
    P a ge | 32 32 | P a g e if(input=='e' || input=='E') { page1(); } else if(input=='1') { clrscr(); l: border(); gotoxy(20,9); cout<<"1 For Pounds To Kilogrames."; gotoxy(20,11); cout<<"2 For Pounds To Ounces."; gotoxy(20,13); cout<<"3 For Pounds To Stone."; gotoxy(20,15); cout<<"4 For Pounds To Grams."; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); weight(); } else if(input1=='e' || input1=='E') {
  • 36.
    P a ge | 33 33 | P a g e page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Pounds::"; gotoxy(30,12); cout<<"kilograms::"; gotoxy(44,11); cin>>v_input; v_input=v_input/2.2046; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto l; } else if(in=='e' || in=='E') { page1(); } else {
  • 37.
    P a ge | 34 34 | P a g e clrscr(); goto l; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Pounds::"; gotoxy(30,12); cout<<"Ounces::"; gotoxy(44,11); cin>>v_input; v_input=v_input*16.000; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto l; } else if(in=='e' || in=='E') { page1(); }
  • 38.
    P a ge | 35 35 | P a g e else { clrscr(); goto l; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Pounds::"; gotoxy(30,12); cout<<"Stones::"; gotoxy(44,11); cin>>v_input; v_input=v_input*0.071429; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto l; } else if(in=='e' || in=='E') {
  • 39.
    P a ge | 36 36 | P a g e page1(); } else { clrscr(); goto l; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Pounds::"; gotoxy(30,12); cout<<"Grams::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.0022046; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto l; }
  • 40.
    P a ge | 37 37 | P a g e else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto l; } } else { clrscr(); main_window();; } } else if(input=='2') { clrscr(); m: border(); gotoxy(20,9); cout<<"1 For Kilogrames To Pounds."; gotoxy(20,11); cout<<"2 For Kilogrames To Ounces."; gotoxy(20,13); cout<<"3 For Kilogrames To Stone."; gotoxy(20,15); cout<<"4 For Kilogrames To Grams."; gotoxy(20,21);
  • 41.
    P a ge | 38 38 | P a g e cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); weight(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Kilograms::"; gotoxy(30,12); cout<<"Pounds::"; gotoxy(44,11); cin>>v_input; v_input=v_input*2.2046; gotoxy(44,12); cout<<setprecision(4)<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14);
  • 42.
    P a ge | 39 39 | P a g e in=getch(); if(in=='b' || in=='B') { clrscr(); goto m; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto m; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Kilograms::"; gotoxy(30,12); cout<<"Ounces::"; gotoxy(44,11); cin>>v_input; v_input=v_input*35.274; gotoxy(44,12); cout<<setprecision(4)<<v_input;
  • 43.
    P a ge | 40 40 | P a g e gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto m; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto m; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Kilograms::"; gotoxy(30,12); cout<<"Stones::"; gotoxy(44,11); cin>>v_input; v_input=v_input*0.15747;
  • 44.
    P a ge | 41 41 | P a g e gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto m; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto m; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Kilograms::"; gotoxy(30,12); cout<<"Grams::"; gotoxy(44,11);
  • 45.
    P a ge | 42 42 | P a g e cin>>v_input; v_input=v_input/0.0010000; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto m; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto m; } } else { clrscr(); goto m; } } else if(input=='3')
  • 46.
    P a ge | 43 43 | P a g e { clrscr(); n: border(); gotoxy(20,9); cout<<"1 For Ounce To Kilograms."; gotoxy(20,11); cout<<"2 For Ounce To Pounds."; gotoxy(20,13); cout<<"3 For Ounce To Stone."; gotoxy(20,15); cout<<"4 For Ounce To Grams."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); weight(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr();
  • 47.
    P a ge | 44 44 | P a g e small_border(); gotoxy(30,11); cout<<"Ounces::"; gotoxy(30,12); cout<<"Kilograms::"; gotoxy(44,11); cin>>v_input; v_input=v_input/35.274; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto n; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto n; } } else if(input1=='2')
  • 48.
    P a ge | 45 45 | P a g e { clrscr(); small_border(); gotoxy(30,11); cout<<"Ounces::"; gotoxy(30,12); cout<<"Pounds::"; gotoxy(44,11); cin>>v_input; v_input=v_input*0.062500; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto n; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto n; }
  • 49.
    P a ge | 46 46 | P a g e } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Ounces::"; gotoxy(30,12); cout<<"Stones::"; gotoxy(44,11); cin>>v_input; v_input=v_input*0.0044643; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto n; } else if(in=='e' || in=='E') { page1(); } else { clrscr();
  • 50.
    P a ge | 47 47 | P a g e goto n; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Ounces::"; gotoxy(30,12); cout<<"Grams::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.35274; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto n; } else if(in=='e' || in=='E') { page1(); } else
  • 51.
    P a ge | 48 48 | P a g e { clrscr(); goto n; } } else { clrscr(); goto n; } } else if(input=='4') { clrscr(); o: border(); gotoxy(20,9); cout<<"1 For Stone To Kilograms."; gotoxy(20,11); cout<<"2 For Stone To Pounds."; gotoxy(20,13); cout<<"3 For Stone To Ounces."; gotoxy(20,15); cout<<"4 For Stone To Grams."; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; input1=getch(); if(input1=='b' || input1=='B')
  • 52.
    P a ge | 49 49 | P a g e { clrscr(); border(); weight(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Stones::"; gotoxy(30,12); cout<<"Kilograms::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.15747; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto o;
  • 53.
    P a ge | 50 50 | P a g e } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto o; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Stones::"; gotoxy(30,12); cout<<"pounds::"; gotoxy(44,11); cin>>v_input; v_input=v_input*14.000; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') {
  • 54.
    P a ge | 51 51 | P a g e clrscr(); goto o; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto o; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Stones::"; gotoxy(30,12); cout<<"Ounces::"; gotoxy(44,11); cin>>v_input; v_input=v_input*224.00; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch();
  • 55.
    P a ge | 52 52 | P a g e if(in=='b' || in=='B') { clrscr(); goto o; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto o; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Stones::"; gotoxy(30,12); cout<<"Grams::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.00015747; gotoxy(44,12); cout<<v_input; gotoxy(28,14);
  • 56.
    P a ge | 53 53 | P a g e cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto o; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto o; } } else { clrscr(); main_window();; } } } void temprature() { gotoxy(27,6); cout<<"::Choose Do You Want::"; gotoxy(20,9);
  • 57.
    P a ge | 54 54 | P a g e cout<<"1 For Celsius To Other."; gotoxy(20,11); cout<<"2 For Fahrenhit To Other."; gotoxy(20,13); cout<<"3 For Kelvin To Other."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(40,19); input=getch(); if(input=='b' || input=='B') { clrscr(); border(); main_window(); } else if(input=='1') { clrscr(); e: border(); gotoxy(20,9); cout<<"1 For Celsius To Fahrenheit."; gotoxy(20,11); cout<<"2 For Celsius To Kevlvin."; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::";
  • 58.
    P a ge | 55 55 | P a g e gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); temprature(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Celcius::"; gotoxy(30,12); cout<<"Fahreheit::"; gotoxy(44,11); cin>>v_input; v_input=v_input*1.8+32; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B')
  • 59.
    P a ge | 56 56 | P a g e { clrscr(); goto e; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto e; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Celcius::"; gotoxy(30,12); cout<<"Kelvin::"; gotoxy(44,11); cin>>v_input; v_input=v_input+273.15; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14);
  • 60.
    P a ge | 57 57 | P a g e in=getch(); if(in=='b' || in=='B') { clrscr(); goto e; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto e; } } } else if(input=='2') { clrscr(); f: border(); gotoxy(20,9); cout<<"1 For Fahrenheit To Celsius."; gotoxy(20,11); cout<<"2 For Fehrenheit To Kelvin."; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19);
  • 61.
    P a ge | 58 58 | P a g e cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); temprature(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Fahrenheit::"; gotoxy(30,12); cout<<"Celcius::"; gotoxy(44,11); cin>>v_input; v_input=(v_input-32)/1.8; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch();
  • 62.
    P a ge | 59 59 | P a g e if(in=='b' || in=='B') { clrscr(); goto f; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto f; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Fahrenheit::"; gotoxy(30,12); cout<<"Kelvin::"; gotoxy(44,11); cin>>v_input; v_input=(v_input+459.67)*5/9; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit.";
  • 63.
    P a ge | 60 60 | P a g e gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto f; } else if(in=='e' || in=='E') { page1(); } else { goto f; } } } else if(input=='3') { clrscr(); g: border(); gotoxy(20,9); cout<<"1 For Kelvin To Celsius."; gotoxy(20,11); cout<<"2 For Kelvin Fehrenheit."; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::";
  • 64.
    P a ge | 61 61 | P a g e gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); temprature(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Kelvin::"; gotoxy(30,12); cout<<"Celcius::"; gotoxy(44,11); cin>>v_input; v_input=v_input-273.15; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B')
  • 65.
    P a ge | 62 62 | P a g e { clrscr(); goto g; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto g; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Kelvin::"; gotoxy(30,12); cout<<"Fahrenheit::"; gotoxy(44,11); cin>>v_input; v_input=(v_input*9/5)-459.67; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14);
  • 66.
    P a ge | 63 63 | P a g e in=getch(); if(in=='b' || in=='B') { clrscr(); goto g; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto g; } } else { clrscr(); main_window(); } } } void lenght() { gotoxy(27,6); cout<<"::Choose Do You Want::"; gotoxy(20,9); cout<<"1 For Miles To Other.";
  • 67.
    P a ge | 64 64 | P a g e gotoxy(20,11); cout<<"2 For Kilometers To Other."; gotoxy(20,13); cout<<"3 For Meter To Other."; gotoxy(20,15); cout<<"4 For Feet To Other."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(40,19); input=getch(); if(input=='b' || input=='B') { clrscr(); border(); main_window(); } else if(input=='1') { clrscr(); h: border(); gotoxy(20,9); cout<<"1 For Miles To Kilometers."; gotoxy(20,11); cout<<"2 For Miles To Meters."; gotoxy(20,13); cout<<"3 For Miles To Centimeters."; gotoxy(20,15);
  • 68.
    P a ge | 65 65 | P a g e cout<<"4 For Miles To Milimeters"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); lenght(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Miles::"; gotoxy(30,12); cout<<"Kilometers::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.62137; gotoxy(44,12); cout<<v_input;
  • 69.
    P a ge | 66 66 | P a g e gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto h; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto h; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Miles::"; gotoxy(30,12); cout<<"Meters::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.0062137;
  • 70.
    P a ge | 67 67 | P a g e gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto h; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto h; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Miles::"; gotoxy(30,12); cout<<"Centimeters::"; gotoxy(44,11);
  • 71.
    P a ge | 68 68 | P a g e cin>>v_input; v_input=v_input/6.213711-06; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto h; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto h; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Miles::"; gotoxy(30,12);
  • 72.
    P a ge | 69 69 | P a g e cout<<"Milimeters::"; gotoxy(44,11); cin>>v_input; v_input=v_input/6.213711-07; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto h; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto h; } } } else if(input=='2') { clrscr(); i:
  • 73.
    P a ge | 70 70 | P a g e border(); gotoxy(20,9); cout<<"1 For Kilometers To Meters."; gotoxy(20,11); cout<<"2 For Kilometers To Miles."; gotoxy(20,13); cout<<"3 For Kilometers To Centimeters."; gotoxy(20,15); cout<<"4 For Kilometers To Milimeters"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); lenght(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11);
  • 74.
    P a ge | 71 71 | P a g e cout<<"Kilometers::"; gotoxy(30,12); cout<<"Meters::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.001000; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto i; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto i; } } else if(input1=='2') {
  • 75.
    P a ge | 72 72 | P a g e clrscr(); small_border(); gotoxy(30,11); cout<<"Kilometers::"; gotoxy(30,12); cout<<"Miles::"; gotoxy(44,11); cin>>v_input; v_input=v_input*0.62137; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto i; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto i; } }
  • 76.
    P a ge | 73 73 | P a g e else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Kilometers::"; gotoxy(30,12); cout<<"Centimeters::"; gotoxy(44,11); cin>>v_input; v_input=v_input/1e-05; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto i; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto i;
  • 77.
    P a ge | 74 74 | P a g e } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Kilometers::"; gotoxy(30,12); cout<<"Milimeters::"; gotoxy(44,11); cin>>v_input; v_input=v_input/1e-06; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto i; } else if(in=='e' || in=='E') { page1(); } else {
  • 78.
    P a ge | 75 75 | P a g e clrscr(); goto i; } } } else if(input=='3') { clrscr(); j: border(); gotoxy(20,9); cout<<"1 For Meters To Kilometers."; gotoxy(20,11); cout<<"2 For Meters To Miles."; gotoxy(20,13); cout<<"3 For Meters To Centimeters."; gotoxy(20,15); cout<<"4 For Meters To Milimeters"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); lenght(); }
  • 79.
    P a ge | 76 76 | P a g e else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Meters::"; gotoxy(30,12); cout<<"kilometers::"; gotoxy(44,11); cin>>v_input; v_input=v_input/1000.0; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto j; } else if(in=='e' || in=='E') { page1(); }
  • 80.
    P a ge | 77 77 | P a g e else { clrscr(); goto j; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Meters::"; gotoxy(30,12); cout<<"Miles::"; gotoxy(44,11); cin>>v_input; v_input=v_input*0.0062137; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto j; } else if(in=='e' || in=='E') {
  • 81.
    P a ge | 78 78 | P a g e page1(); } else { clrscr(); goto j; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Meters::"; gotoxy(30,12); cout<<"Centimeters::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.010000; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto j; }
  • 82.
    P a ge | 79 79 | P a g e else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto j; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Meters::"; gotoxy(30,12); cout<<"Milimeters::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.0010000; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr();
  • 83.
    P a ge | 80 80 | P a g e goto j; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto j; } } else { clrscr(); goto j; } } else if(input=='4') { clrscr(); k: border(); gotoxy(20,9); cout<<"1 For Feet To Kilometers."; gotoxy(20,11); cout<<"2 For Feet To Miles."; gotoxy(20,13); cout<<"3 For Feet To Meters."; gotoxy(20,15);
  • 84.
    P a ge | 81 81 | P a g e cout<<"4 For Feet To Centimeters"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); lenght(); } else if(input1=='e' || input1=='E') { page1(); } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Feet::"; gotoxy(30,12); cout<<"kilometers::"; gotoxy(44,11); cin>>v_input; v_input=v_input/3280.8; gotoxy(44,12); cout<<v_input;
  • 85.
    P a ge | 82 82 | P a g e gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto k; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto k; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Feet::"; gotoxy(30,12); cout<<"Miles::"; gotoxy(44,11); cin>>v_input; v_input=v_input*0.00018939;
  • 86.
    P a ge | 83 83 | P a g e gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto k; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto k; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Feet::"; gotoxy(30,12); cout<<"Meters::"; gotoxy(44,11);
  • 87.
    P a ge | 84 84 | P a g e cin>>v_input; v_input=v_input/3.2808; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto k; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto k; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Feet::"; gotoxy(30,12);
  • 88.
    P a ge | 85 85 | P a g e cout<<"Centimeters::"; gotoxy(44,11); cin>>v_input; v_input=v_input/0.32808; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto k; } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto k; } } else { clrscr(); main_window(); }
  • 89.
    P a ge | 86 86 | P a g e } } void curr() { clrscr(); p: border(); gotoxy(27,6); cout<<"::Choose Do You Want::"; gotoxy(20,21); cout<<"Press B To Back E for Exit."; gotoxy(20,9); cout<<"1 For Indian Rupee To US Dollars."; gotoxy(20,11); cout<<"2 For Indian Rupee To Australian Dollars."; gotoxy(20,13); cout<<"3 For Indian Rupee To Euros."; gotoxy(20,15); cout<<"4 For Indian Rupee To British Pounds."; gotoxy(20,17); cout<<"5 For Indian Rupee To Canadian Dollars."; gotoxy(20,19); cout<<"Choose Your Option::"; gotoxy(40,19); input1=getch(); if(input1=='b' || input1=='B') { clrscr(); border(); main_window();
  • 90.
    P a ge | 87 87 | P a g e } else if(input1=='1') { clrscr(); small_border(); gotoxy(30,11); cout<<"Rupee::"; gotoxy(30,12); cout<<"US Dollar::"; gotoxy(44,11); cin>>v_input; v_input=v_input/67.048193; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto p; } else if(in=='e' || in=='E') { page1(); } else { clrscr();
  • 91.
    P a ge | 88 88 | P a g e goto p; } } else if(input1=='2') { clrscr(); small_border(); gotoxy(30,11); cout<<"Rupee::"; gotoxy(30,12); cout<<"Australian::"; gotoxy(44,11); cin>>v_input; v_input=v_input/50.167278; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto p; } else if(in=='e' || in=='E') { page1(); } else
  • 92.
    P a ge | 89 89 | P a g e { clrscr(); goto p; } } else if(input1=='3') { clrscr(); small_border(); gotoxy(30,11); cout<<"Rupee::"; gotoxy(30,12); cout<<"Euro::"; gotoxy(44,11); cin>>v_input; v_input=v_input/75.225088; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto p; } else if(in=='e' || in=='E') { page1();
  • 93.
    P a ge | 90 90 | P a g e } else { clrscr(); goto p; } } else if(input1=='4') { clrscr(); small_border(); gotoxy(30,11); cout<<"Rupee::"; gotoxy(30,12); cout<<"B Pound::"; gotoxy(44,11); cin>>v_input; v_input=v_input/88.428951; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto p; } else if(in=='e' || in=='E')
  • 94.
    P a ge | 91 91 | P a g e { page1(); } else { clrscr(); goto p; } } if(input1=='5') { clrscr(); small_border(); gotoxy(30,11); cout<<"Rupee::"; gotoxy(30,12); cout<<"Can. Dollar::"; gotoxy(44,11); cin>>v_input; v_input=v_input/50.951223; gotoxy(44,12); cout<<v_input; gotoxy(28,14); cout<<"Press B To Back E for Exit."; gotoxy(55,14); in=getch(); if(in=='b' || in=='B') { clrscr(); goto p;
  • 95.
    P a ge | 92 92 | P a g e } else if(in=='e' || in=='E') { page1(); } else { clrscr(); goto p; } } else { clrscr(); main_window(); } } }; void main() { clrscr(); converter x; x.border(); x.page1(); getch(); }
  • 96.
    P a ge | 93 93 | P a g e THANK YOU