Answer:
Digital pen
Explanation:
It is digital pen because it is basically a pen for electronics which you can write your signature with it.
Answer:
To give brainliest you need to click the little crown under the answer that someone has responded with! it should be located near the rate 5 stars!
Explanation:
hopefully this helps!! also yes yes ty for the gif<3
Lists involve date with multiple themes.
Answer:
(B) Home
Explanation:
Echo is an Amazon product.
Home is a smart speaker developed by Google.
Cortana is a product of Microsoft.
HomePod is developed by Apple.
If Henry wants to be connected to his Google account, you would recommend him to buy Home, because it is a Google product.
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.