Answer:
The answer is below
Explanation:
The various stages in the information processing cycle in the correct order is as follows:
1. Input stage: this is when the data is sent into the computer through the hardware
2. Processing stage: this when the is being refined in the central processing unit of the computer
3. Storage stage: this is when the data is being saved or stored in the computer memory such as Hard drive or external storage such as Flash drive
4. Output stage: this is when the refined or processed data is produced to the user either through the monitor screen or printing
Answer:
<h2>
<em>File</em></h2>
plz mark it as brainliest
Answer:
see explaination
Explanation:
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double temp1,temp2,inc,cel;
int i=1;
while(i==1)
{
i=0;
cin>>temp1>>temp2>>inc;
if(temp2<temp1||inc<=0)
{
i=1;
cout<<"Starting temperature must be <= ending temperature and increment must be >0.0\n";
}
}
cout<<endl;
cout<<setw(15)<<"Fahrenheit"<<setw(15)<<"Celsius";
while(temp1<=temp2)
{
cel=(temp1-32)/1.8;
cout<<endl;
cout<<fixed<<setprecision(3)<<setw(15)<<temp1<<setw(15)<<cel;
temp1+=inc;
}
}
Please kindly check attachment for output.