Answer:
676 ft
Explanation:
Minimum sight distance, d_min
d_min = 1.47 * v_max * t_total where v_max is maximum velocity in mi/h, t_total is total time
v_max is given as 50 mi/h
t_total is sum of time for right-turn and adjustment time=8.5+0.7=9.2 seconds
Substituting these figures we obtain d_min=1.47*50*9.2=676.2 ft
For practical purposes, this distance is taken as 676 ft
hi here is your answer hope it helps or then sry
Explanation:
A brass lid on a glass canning jar will loosen when heated because brasshas the greater coefficient of thermal expansion
Answer:
#include <iostream>
#include <iomanip>
using namespace std;
class pointType
{
public:
pointType()
{
x=0;
y=0;
}
pointType::pointType(double x,double y)
{
this->x = x;
this->y = y;
}
void pointType::setPoint(double x,double y)
{
this->x=x;
this->y=y;
}
void pointType::print()
{
cout<<"("<<x<<","<<y<<")\n";
}
double pointType::getX()
{return x;
}
double pointType::getY()
{return y;
}
private:
double x,y;
};
int main()
{
pointType p2;
double x,y;
cout<<"Enter an x Coordinate for point ";
cin>>x;
cout<<"Enter an y Coordinate for point ";
cin>>y;
p2.setPoint(x,y);
p2.print();
system("pause");
return 0;
}