C++ I want to take this in function, what to do?

C++ Coding Tutorial
G

Gabby

New member
Freecoin
97
I want to take this in function, what to do??
#include<iostream>
using namespace std;
#include<iomanip>

int main()
{
int ctr,num,c;
int fahrenheit[10];
cout<<"Enter Value: ";
cin>>num;
cout<<endl;
ctr=0;
do{
cout<<"Enter fahrenheit ";
cin>>fahrenheit[ctr];
ctr++;
}
while(ctr<num);
cout<<setw(15)<<"FAHRENHEIT"<<setw(15)<<"CELSIUS"<<setw(15)<<endl;

for(int x=0;x<num;x++)
{
c=(fahrenheit[x]-32)*5/9;
cout<<setw(15)<<fahrenheit[x]<<setw(15)<<c<<setw(15)<<endl;
}
return 0;
}
 

Richest Freecoded User

Most Freecoin

freecoded
freecoded
4,876 Freecoin
J
Johnhendrick
645 Freecoin
S
Smith16
607 Freecoin
Davy200
Davy200
590 Freecoin
nathan69
nathan69
426 Freecoin
Laureine
Laureine
415 Freecoin
A
anajeen
395 Freecoin
C
codeguru
282 Freecoin
Tekera
Tekera
267 Freecoin
P
Peterparker87
239 Freecoin
Top