+ All Categories
Home > Documents > some c++ programs

some c++ programs

Date post: 09-Oct-2015
Category:
Upload: anurag12107010
View: 14 times
Download: 0 times
Share this document with a friend
Description:
this doc contains some basic c++ programs that every beginner should know
Popular Tags:

of 52

Transcript

1. Write a C++ Program to enter velocity, acceleration and time and print final velocity using the formula : v = u + a * t.#include #include void main(){clrscr();int v,u,a,t;cout u>>a>>t;v=u+a*t;cout


Recommended