Answer to Question #275793 in C++ for Ongie

Question #275793

Create C++ full program that calculates the value of u. u=a+gv^2


1
Expert's answer
2021-12-05T11:22:31-0500
#include <iostream>


using namespace std;




int main(){    
	double u;
	double a;
	double v;
	const double g=9.8;


	cout<<"Enter a: ";
	cin>>a;
	cout<<"Enter v: ";
	cin>>v;
	u=a+g*v*v;


	cout<<"u = "<<u;
	cin>>v;
	return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment