Do you mean like a phone
IPhones
Samsung
Moto z
Lge sorry if this isn't what you asked
Mostly teenagers and young adults (ages 14-21) text the most.
Answer:
Explanation:
#include <iostream>
using namespace std;
int costdays(int);
int costhrs(int,int);
int main()
{
int dd,hh,mm,tmph,tmpd,tmpm=0;
int pcost,mcost=0;
cout<<"Enter Parking time" << endl;
cout<<"Hours: ";
cin>>hh;
cout<<"Minutes: ";
cin>>mm;
if (mm>60)
{
tmph=mm/60;
hh+=tmph;
mm-=(tmph*60);
}
if (hh>24)
{
tmpd=hh/24;
dd+=tmpd;
hh-=(tmpd*24);
}
if ((hh>4)&&(mm>0))
{
pcost+=costdays(1);
}
else
{
mcost=costhrs(hh,mm);
}
cout<<"Total time: ";
if (dd>0)
{
cout<<dd<<"days ";
pcost+=costdays(dd);
}
pcost+=mcost;
cout<<hh<<"h "<<mm<<"mins"<<endl;
cout<<"Total Cost :"<<pcost<<"Won";
return 0;
}
int costdays(int dd)
{
return(dd*25000);
}
int costhrs(int hh,int mm)
{
int tmpm, tmp=0;
tmp=(hh*6)*1000;
tmp+=(mm/10)*1000;
tmpm=mm-((mm/10)*10);
if (tmpm>0)
{
tmp+=1000;
}
return(tmp);
}
Answer:
Hatchback Original MSRP / Price Engine
Supra 3dr LB Auto $31,078 / $29,122 6 Cylinder
Supra 3dr LB Sport Roof Auto $35,648 / $32,842 6 Cylinder
Supra 3dr LB Sport Roof Turbo Auto $38,778 / $35,903 6 Cylinder Turbo
Supra 3dr LB Sport Roof Turbo Manual $40,508 / $37,362 6 Cylinder Turbo
Explanation: