SlideShare a Scribd company logo
C++ Assignment
A WORK REPORT SUBMITTED
IN PARTIAL FULLFILLMENT OF THE REQUIREMENT FOR THE DEGREE
Bachelor of Computer Application
Dezyne E’cole College
106/10, CIVIL LINES
AJMER
RAJASTHAN - 305001 (INDIA)
www.dezyneecole.com
SUBMITTED BY
Deepak soni
CLASS: BCA 3rd YEAR
In this following pages I am showcasing my work
MAIN WINDOW OF CONVERTER:
WELCOME PANEL OF CONVERTER
FOR AREA CONVERTER:
FOR SQUAREFEET TO OTHER:
FOR SQUAREFEET TO HACTARES:
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);
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);
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')
{
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();
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();
}
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);
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')
{
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
{
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();
}
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;
}
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')
{
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.";
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);
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;
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::";
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 ::";
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;
}
}
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();
}
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();
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
{
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();
}
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')
{
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.";
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);
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);
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);
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;
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
{
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();
}
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')
{
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
{
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();
}
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')
{
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;
}
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);
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);
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;
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;
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);
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')
{
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();
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')
{
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;
}
}
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();
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
{
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')
{
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;
}
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')
{
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();
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);
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);
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::";
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')
{
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);
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);
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();
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.";
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::";
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')
{
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);
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.";
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);
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;
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;
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);
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);
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:
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);
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')
{
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;
}
}
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;
}
}
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
{
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();
}
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();
}
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')
{
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;
}
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();
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);
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;
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;
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);
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);
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();
}
}
}
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();
}
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();
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
{
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();
}
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')
{
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;
}
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();
}
Thank you
Deepak soni
Course:-Bachelor Of Computer Application
www.Dezyneecole.com

More Related Content

What's hot

C test
C testC test
Hotel Management In C++
Hotel Management In C++Hotel Management In C++
Hotel Management In C++
Amish Mhatre
 
Let us c(by yashwant kanetkar) chapter 2 solution
Let us c(by yashwant kanetkar) chapter 2 solutionLet us c(by yashwant kanetkar) chapter 2 solution
Let us c(by yashwant kanetkar) chapter 2 solution
rohit kumar
 
Operator overloading
Operator overloadingOperator overloading
Operator overloading
mohamed sikander
 
COMPUTER SCIENCE CLASS 12 PRACTICAL FILE
COMPUTER SCIENCE CLASS 12 PRACTICAL FILECOMPUTER SCIENCE CLASS 12 PRACTICAL FILE
COMPUTER SCIENCE CLASS 12 PRACTICAL FILE
Anushka Rai
 
Let us c (5th and 12th edition by YASHVANT KANETKAR) chapter 2 solution
Let us c (5th and 12th edition by YASHVANT KANETKAR) chapter 2 solutionLet us c (5th and 12th edition by YASHVANT KANETKAR) chapter 2 solution
Let us c (5th and 12th edition by YASHVANT KANETKAR) chapter 2 solution
Hazrat Bilal
 
Let us c(by Yashwant Kanetkar) 5th edition solution chapter 1
Let us c(by Yashwant Kanetkar) 5th edition solution chapter 1Let us c(by Yashwant Kanetkar) 5th edition solution chapter 1
Let us c(by Yashwant Kanetkar) 5th edition solution chapter 1
rohit kumar
 
C mcq practice test 4
C mcq practice test 4C mcq practice test 4
C mcq practice test 4
Aman Kamboj
 
Let us c chapter 4 solution
Let us c chapter 4 solutionLet us c chapter 4 solution
Let us c chapter 4 solution
rohit kumar
 
please sir i want to comments of every code what i do in eachline . in this w...
please sir i want to comments of every code what i do in eachline . in this w...please sir i want to comments of every code what i do in eachline . in this w...
please sir i want to comments of every code what i do in eachline . in this w...
hwbloom27
 
Ooprc3c
Ooprc3cOoprc3c
Ooprc3c
Ankit Dubey
 
Basic python programs
Basic python programsBasic python programs
Basic python programs
RaginiJain21
 
Printing different pyramid patterns of numbers,alphabets and stars using C.
Printing different pyramid patterns of numbers,alphabets and stars using C.Printing different pyramid patterns of numbers,alphabets and stars using C.
Printing different pyramid patterns of numbers,alphabets and stars using C.
Hazrat Bilal
 
C programming on the determination of shear force, bending moment, shear stre...
C programming on the determination of shear force, bending moment, shear stre...C programming on the determination of shear force, bending moment, shear stre...
C programming on the determination of shear force, bending moment, shear stre...
Mamun Mehedee
 
c++ program using All data type and operators
c++ program using All data type and operators c++ program using All data type and operators
c++ program using All data type and operators
AMUDHAJAY
 
Assignement of programming & problem solving u.s ass.(1)
Assignement of programming & problem solving u.s ass.(1)Assignement of programming & problem solving u.s ass.(1)
Assignement of programming & problem solving u.s ass.(1)
Syed Umair
 
Oopsprc1e
Oopsprc1eOopsprc1e
Oopsprc1e
Ankit Dubey
 
C++ manual Report Full
C++ manual Report FullC++ manual Report Full
C++ manual Report Full
Thesis Scientist Private Limited
 

What's hot (20)

ShopC++
ShopC++ShopC++
ShopC++
 
C test
C testC test
C test
 
Hotel Management In C++
Hotel Management In C++Hotel Management In C++
Hotel Management In C++
 
Let us c(by yashwant kanetkar) chapter 2 solution
Let us c(by yashwant kanetkar) chapter 2 solutionLet us c(by yashwant kanetkar) chapter 2 solution
Let us c(by yashwant kanetkar) chapter 2 solution
 
Operator overloading
Operator overloadingOperator overloading
Operator overloading
 
COMPUTER SCIENCE CLASS 12 PRACTICAL FILE
COMPUTER SCIENCE CLASS 12 PRACTICAL FILECOMPUTER SCIENCE CLASS 12 PRACTICAL FILE
COMPUTER SCIENCE CLASS 12 PRACTICAL FILE
 
Let us c (5th and 12th edition by YASHVANT KANETKAR) chapter 2 solution
Let us c (5th and 12th edition by YASHVANT KANETKAR) chapter 2 solutionLet us c (5th and 12th edition by YASHVANT KANETKAR) chapter 2 solution
Let us c (5th and 12th edition by YASHVANT KANETKAR) chapter 2 solution
 
Let us c(by Yashwant Kanetkar) 5th edition solution chapter 1
Let us c(by Yashwant Kanetkar) 5th edition solution chapter 1Let us c(by Yashwant Kanetkar) 5th edition solution chapter 1
Let us c(by Yashwant Kanetkar) 5th edition solution chapter 1
 
C mcq practice test 4
C mcq practice test 4C mcq practice test 4
C mcq practice test 4
 
Let us c chapter 4 solution
Let us c chapter 4 solutionLet us c chapter 4 solution
Let us c chapter 4 solution
 
please sir i want to comments of every code what i do in eachline . in this w...
please sir i want to comments of every code what i do in eachline . in this w...please sir i want to comments of every code what i do in eachline . in this w...
please sir i want to comments of every code what i do in eachline . in this w...
 
Ooprc3c
Ooprc3cOoprc3c
Ooprc3c
 
Basic python programs
Basic python programsBasic python programs
Basic python programs
 
Printing different pyramid patterns of numbers,alphabets and stars using C.
Printing different pyramid patterns of numbers,alphabets and stars using C.Printing different pyramid patterns of numbers,alphabets and stars using C.
Printing different pyramid patterns of numbers,alphabets and stars using C.
 
C programming on the determination of shear force, bending moment, shear stre...
C programming on the determination of shear force, bending moment, shear stre...C programming on the determination of shear force, bending moment, shear stre...
C programming on the determination of shear force, bending moment, shear stre...
 
c++ program using All data type and operators
c++ program using All data type and operators c++ program using All data type and operators
c++ program using All data type and operators
 
Assignement of programming & problem solving u.s ass.(1)
Assignement of programming & problem solving u.s ass.(1)Assignement of programming & problem solving u.s ass.(1)
Assignement of programming & problem solving u.s ass.(1)
 
Exam for c
Exam for cExam for c
Exam for c
 
Oopsprc1e
Oopsprc1eOopsprc1e
Oopsprc1e
 
C++ manual Report Full
C++ manual Report FullC++ manual Report Full
C++ manual Report Full
 

Similar to Deepak Soni ,BCA Third Year

Shikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third YearShikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third Year
Dezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
Dezyneecole
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
Debashis Rath
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
Debashis Rath
 
Rajeev oops 2nd march
Rajeev oops 2nd marchRajeev oops 2nd march
Rajeev oops 2nd marchRajeev Sharan
 
Oops practical file
Oops practical fileOops practical file
Oops practical fileAnkit Dixit
 
c++ practical Digvajiya collage Rajnandgaon
c++ practical  Digvajiya collage Rajnandgaonc++ practical  Digvajiya collage Rajnandgaon
c++ practical Digvajiya collage Rajnandgaon
yash production
 
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
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
Dezyneecole
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
Dezyneecole
 
C++ file
C++ fileC++ file
C++ and OOPS Crash Course by ACM DBIT | Grejo Joby
C++ and OOPS Crash Course by ACM DBIT | Grejo JobyC++ and OOPS Crash Course by ACM DBIT | Grejo Joby
C++ and OOPS Crash Course by ACM DBIT | Grejo Joby
GrejoJoby1
 
C++ in 10 Hours.pdf.pdf
C++ in 10 Hours.pdf.pdfC++ in 10 Hours.pdf.pdf
C++ in 10 Hours.pdf.pdf
SumitSingh813090
 
19BCS2605_Krishna_Kumar_Computer_Graphics_exp_3.1.pdf
19BCS2605_Krishna_Kumar_Computer_Graphics_exp_3.1.pdf19BCS2605_Krishna_Kumar_Computer_Graphics_exp_3.1.pdf
19BCS2605_Krishna_Kumar_Computer_Graphics_exp_3.1.pdf
KrishnaKumar2309
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
Dezyneecole
 
cbse 12 computer science IP
cbse 12 computer science IPcbse 12 computer science IP
cbse 12 computer science IP
D. j Vicky
 
2 d array(part 2) || 2D ARRAY FUNCTION WRITING || GET 100% MARKS IN CBSE CS
2 d array(part 2) || 2D ARRAY FUNCTION WRITING || GET 100% MARKS IN CBSE CS2 d array(part 2) || 2D ARRAY FUNCTION WRITING || GET 100% MARKS IN CBSE CS
2 d array(part 2) || 2D ARRAY FUNCTION WRITING || GET 100% MARKS IN CBSE CS
AAKASH KUMAR
 
cbse 12 computer science investigatory project
cbse 12 computer science investigatory project  cbse 12 computer science investigatory project
cbse 12 computer science investigatory project
D. j Vicky
 
cbse 12 computer science investigatory project
cbse 12 computer science investigatory project  cbse 12 computer science investigatory project
cbse 12 computer science investigatory project
D. j Vicky
 

Similar to Deepak Soni ,BCA Third Year (20)

Shikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third YearShikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third Year
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
 
Rajeev oops 2nd march
Rajeev oops 2nd marchRajeev oops 2nd march
Rajeev oops 2nd march
 
Oops practical file
Oops practical fileOops practical file
Oops practical file
 
c++ practical Digvajiya collage Rajnandgaon
c++ practical  Digvajiya collage Rajnandgaonc++ practical  Digvajiya collage Rajnandgaon
c++ practical Digvajiya collage Rajnandgaon
 
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
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
 
C++ file
C++ fileC++ file
C++ file
 
C++ and OOPS Crash Course by ACM DBIT | Grejo Joby
C++ and OOPS Crash Course by ACM DBIT | Grejo JobyC++ and OOPS Crash Course by ACM DBIT | Grejo Joby
C++ and OOPS Crash Course by ACM DBIT | Grejo Joby
 
C++ in 10 Hours.pdf.pdf
C++ in 10 Hours.pdf.pdfC++ in 10 Hours.pdf.pdf
C++ in 10 Hours.pdf.pdf
 
19BCS2605_Krishna_Kumar_Computer_Graphics_exp_3.1.pdf
19BCS2605_Krishna_Kumar_Computer_Graphics_exp_3.1.pdf19BCS2605_Krishna_Kumar_Computer_Graphics_exp_3.1.pdf
19BCS2605_Krishna_Kumar_Computer_Graphics_exp_3.1.pdf
 
Qno 1 (c)
Qno 1 (c)Qno 1 (c)
Qno 1 (c)
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
 
cbse 12 computer science IP
cbse 12 computer science IPcbse 12 computer science IP
cbse 12 computer science IP
 
2 d array(part 2) || 2D ARRAY FUNCTION WRITING || GET 100% MARKS IN CBSE CS
2 d array(part 2) || 2D ARRAY FUNCTION WRITING || GET 100% MARKS IN CBSE CS2 d array(part 2) || 2D ARRAY FUNCTION WRITING || GET 100% MARKS IN CBSE CS
2 d array(part 2) || 2D ARRAY FUNCTION WRITING || GET 100% MARKS IN CBSE CS
 
cbse 12 computer science investigatory project
cbse 12 computer science investigatory project  cbse 12 computer science investigatory project
cbse 12 computer science investigatory project
 
cbse 12 computer science investigatory project
cbse 12 computer science investigatory project  cbse 12 computer science investigatory project
cbse 12 computer science investigatory project
 

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

What is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptxWhat is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptx
christianmathematics
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
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
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
Bisnar Chase Personal Injury Attorneys
 
kitab khulasah nurul yaqin jilid 1 - 2.pptx
kitab khulasah nurul yaqin jilid 1 - 2.pptxkitab khulasah nurul yaqin jilid 1 - 2.pptx
kitab khulasah nurul yaqin jilid 1 - 2.pptx
datarid22
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 

Recently uploaded (20)

What is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptxWhat is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptx
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
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
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
 
kitab khulasah nurul yaqin jilid 1 - 2.pptx
kitab khulasah nurul yaqin jilid 1 - 2.pptxkitab khulasah nurul yaqin jilid 1 - 2.pptx
kitab khulasah nurul yaqin jilid 1 - 2.pptx
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 

Deepak Soni ,BCA Third Year