Computer Science, asked by missfrozen137, 1 year ago

c++ program.........

Attachments:

Answers

Answered by piyushatre29
3

#include<iostream.h>

#include<conio.h>

void main()

{

int a;

cout<<"1.meter into feet";

cin>>a;

switch(a)

{

case: 1

cout<<"feet";

default:

cout<<"bhai 1 ni dabaya";

}

getch();

}

Answered by Anonymous
14

#include<iostream.h>

int main( )

{

double m,f;

cout<<"enter values in metres";

cin>m;

f=m*3.27

cout<<"feet="<<f;

return 0;

}

Similar questions