This is a sample C++ Program to calculate final velocity when time, acceleration and initial velocity are given. #include <iostream.h> #include <conio.h> void main() { clrscr(); int v,u,a,t; cout << "Enter The Velocity, Acceleration, Time: " << endl; cin>>u>>a>>t; v=u+a*t; cout << "The Final Velocity Is " << v << "." << endl; getch(); } OUTPUT: Enter The Velocity, Acceleration, Time: 0 5 2 The Final Velocity Is 10. ALSO CHECK THE FOLLOWING C++ PROGRAMS: -- C++ Program To Accept & Print The User’s Age. -- C++ Program To Print A String. -- C++ Program To Accept & Display A Number. -- C++ Program To Print Sum Of Two Values. -- C++ Program To Print Square Of A Numeric Value. -- C++ Program To Accept & Print Marks & Find Total. -- C++ Progr...
All HR and Technical interview questions with answers for freshers and experienced professional. It helps job seekers who are about to attend interviews.