SlideShare a Scribd company logo
SUBMITED BY
Hardik Jadam
Bachelors of Computer Application II YEAR
Dezyne E´cole College
www.dezyneecole.com
INFORMATION TECHNOLOGY
PROJECT REPORT
ON
ALL UNITS AND CURRENCY CONVERTOR
C++
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
Hardik Jadam
Dezyne E´cole College
106/10 Civil Line, Ajmer
Tel – 0145-2624679
Www.dezyneecole.com
2016
Acknowledgement
I HARDIK JADAM, 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
1 | P a g e
2 | P a g e
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);
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);
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')
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();
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();
}
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);
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')
{
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
{
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();
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;
}
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')
{
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.";
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);
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;
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::";
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 ::";
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;
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();
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();
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
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();
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')
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.";
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);
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);
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);
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;
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
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();
}
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')
{
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
{
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();
}
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')
{
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;
}
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);
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);
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;
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;
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);
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')
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();
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')
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;
}
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();
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
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')
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;
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')
{
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();
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);
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);
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::";
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')
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);
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);
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();
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.";
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::";
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')
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);
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.";
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);
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;
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;
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);
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);
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:
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);
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')
{
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;
}
}
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;
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
{
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();
}
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();
}
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')
{
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;
}
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();
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);
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;
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;
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);
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);
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();
}
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();
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();
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
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();
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')
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;
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();
}
93 | P a g e
94 | P a g e
THANK YOU

More Related Content

Similar to Hardik Jadam , BCA Third Year

Reshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third YearReshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third Year
dezyneecole
 
Computer science Investigatory Project Class 12 C++
Computer science Investigatory Project Class 12 C++Computer science Investigatory Project Class 12 C++
Computer science Investigatory Project Class 12 C++
Rushil Aggarwal
 
C++ project on police station software
C++ project on police station softwareC++ project on police station software
C++ project on police station software
dharmenderlodhi021
 
Contoh program c++ kalkulator
Contoh program c++ kalkulatorContoh program c++ kalkulator
Contoh program c++ kalkulator
JsHomeIndustry
 
Ch4
Ch4Ch4
Rajeev oops 2nd march
Rajeev oops 2nd marchRajeev oops 2nd march
Rajeev oops 2nd march
Rajeev Sharan
 
Tik tic tok
Tik tic tokTik tic tok
Tik tic tok
RIDDHICHOUHAN2
 
Tic tac toe
Tic tac toeTic tac toe
Tic tac toe
KrishanKantGupta5
 
CANTEEN MANAGEMENT SYSTEM IN C++
CANTEEN MANAGEMENT SYSTEM IN C++CANTEEN MANAGEMENT SYSTEM IN C++
CANTEEN MANAGEMENT SYSTEM IN C++
vikram mahendra
 
Oops practical file
Oops practical fileOops practical file
Oops practical file
Ankit Dixit
 
CREW SCHEDULING
CREW SCHEDULINGCREW SCHEDULING
CREW SCHEDULING
Evren E
 
12
1212
Computer Practical XII
Computer Practical XIIComputer Practical XII
Computer Practical XII
Ûťţåm Ğűpţä
 
C++ TUTORIAL 1
C++ TUTORIAL 1C++ TUTORIAL 1
C++ TUTORIAL 1
Farhan Ab Rahman
 
Computer Science Project on Management System
Computer Science Project on Management System Computer Science Project on Management System
Computer Science Project on Management System
SajidAli643
 
Computer science project work on C++
Computer science project work on C++Computer science project work on C++
Computer science project work on C++
NARESH KUMAR
 
Simpson and lagranje dalambair math methods
Simpson and lagranje dalambair math methods Simpson and lagranje dalambair math methods
Simpson and lagranje dalambair math methods
kinan keshkeh
 
SALARY MANAGEMENT SYSTEM IN C++
SALARY MANAGEMENT SYSTEM IN C++SALARY MANAGEMENT SYSTEM IN C++
SALARY MANAGEMENT SYSTEM IN C++
vikram mahendra
 
C++ file
C++ fileC++ file
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101
premrings
 

Similar to Hardik Jadam , BCA Third Year (20)

Reshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third YearReshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third Year
 
Computer science Investigatory Project Class 12 C++
Computer science Investigatory Project Class 12 C++Computer science Investigatory Project Class 12 C++
Computer science Investigatory Project Class 12 C++
 
C++ project on police station software
C++ project on police station softwareC++ project on police station software
C++ project on police station software
 
Contoh program c++ kalkulator
Contoh program c++ kalkulatorContoh program c++ kalkulator
Contoh program c++ kalkulator
 
Ch4
Ch4Ch4
Ch4
 
Rajeev oops 2nd march
Rajeev oops 2nd marchRajeev oops 2nd march
Rajeev oops 2nd march
 
Tik tic tok
Tik tic tokTik tic tok
Tik tic tok
 
Tic tac toe
Tic tac toeTic tac toe
Tic tac toe
 
CANTEEN MANAGEMENT SYSTEM IN C++
CANTEEN MANAGEMENT SYSTEM IN C++CANTEEN MANAGEMENT SYSTEM IN C++
CANTEEN MANAGEMENT SYSTEM IN C++
 
Oops practical file
Oops practical fileOops practical file
Oops practical file
 
CREW SCHEDULING
CREW SCHEDULINGCREW SCHEDULING
CREW SCHEDULING
 
12
1212
12
 
Computer Practical XII
Computer Practical XIIComputer Practical XII
Computer Practical XII
 
C++ TUTORIAL 1
C++ TUTORIAL 1C++ TUTORIAL 1
C++ TUTORIAL 1
 
Computer Science Project on Management System
Computer Science Project on Management System Computer Science Project on Management System
Computer Science Project on Management System
 
Computer science project work on C++
Computer science project work on C++Computer science project work on C++
Computer science project work on C++
 
Simpson and lagranje dalambair math methods
Simpson and lagranje dalambair math methods Simpson and lagranje dalambair math methods
Simpson and lagranje dalambair math methods
 
SALARY MANAGEMENT SYSTEM IN C++
SALARY MANAGEMENT SYSTEM IN C++SALARY MANAGEMENT SYSTEM IN C++
SALARY MANAGEMENT SYSTEM IN C++
 
C++ file
C++ fileC++ file
C++ file
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101
 

More from Dezyneecole

Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Dezyneecole
 
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Dezyneecole
 
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Dezyneecole
 
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Dezyneecole
 
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Dezyneecole
 
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics  Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics  Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics Project)
Dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery Project)
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery  Project)Dimple Mordani, Diploma Fashion Design First Year, (Embroidery  Project)
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery Project)
Dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
Dezyneecole
 

More from Dezyneecole (20)

Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
 
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
 
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
 
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
 
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
 
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
 
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
 
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
 
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
 
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics  Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics  Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
 
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery Project)
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery  Project)Dimple Mordani, Diploma Fashion Design First Year, (Embroidery  Project)
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery Project)
 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
 
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
 

Recently uploaded

Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
IGCSE Biology Chapter 14- Reproduction in Plants.pdf
IGCSE Biology Chapter 14- Reproduction in Plants.pdfIGCSE Biology Chapter 14- Reproduction in Plants.pdf
IGCSE Biology Chapter 14- Reproduction in Plants.pdf
Amin Marwan
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
ZK on Polkadot zero knowledge proofs - sub0.pptx
ZK on Polkadot zero knowledge proofs - sub0.pptxZK on Polkadot zero knowledge proofs - sub0.pptx
ZK on Polkadot zero knowledge proofs - sub0.pptx
dot55audits
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
MysoreMuleSoftMeetup
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Denish Jangid
 
math operations ued in python and all used
math operations ued in python and all usedmath operations ued in python and all used
math operations ued in python and all used
ssuser13ffe4
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
BoudhayanBhattachari
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
PsychoTech Services
 

Recently uploaded (20)

Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
IGCSE Biology Chapter 14- Reproduction in Plants.pdf
IGCSE Biology Chapter 14- Reproduction in Plants.pdfIGCSE Biology Chapter 14- Reproduction in Plants.pdf
IGCSE Biology Chapter 14- Reproduction in Plants.pdf
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
ZK on Polkadot zero knowledge proofs - sub0.pptx
ZK on Polkadot zero knowledge proofs - sub0.pptxZK on Polkadot zero knowledge proofs - sub0.pptx
ZK on Polkadot zero knowledge proofs - sub0.pptx
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
 
math operations ued in python and all used
math operations ued in python and all usedmath operations ued in python and all used
math operations ued in python and all used
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
 

Hardik Jadam , BCA Third Year

  • 1. SUBMITED BY Hardik Jadam Bachelors of Computer Application II YEAR Dezyne E´cole College www.dezyneecole.com INFORMATION TECHNOLOGY PROJECT REPORT ON ALL UNITS AND CURRENCY CONVERTOR C++
  • 2. 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 Hardik Jadam Dezyne E´cole College 106/10 Civil Line, Ajmer Tel – 0145-2624679 Www.dezyneecole.com 2016
  • 3. Acknowledgement I HARDIK JADAM, 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. 1 | P a g e
  • 5. 2 | P a g e
  • 6. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 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. 93 | P a g e
  • 97. 94 | P a g e THANK YOU