12 Nov 2009

Play With Value

0 comments



Hello guys, today let's playing with number/value

/* Let's Play with Value*/

#include <iostream.h>

#include <conio.h>

void main()

{

int x, y, z;

cout<<"Value PlayongI"<<endl;

cout<<"Input First Number= ";

cin>>x;

cout<<"Input 2nd Number = ";

cin>>y;

cout<<"Input 3th = ";

cin>>z;

cout<<"View Result = "<<endl;

cout<<z<<"\n"<<y<<"\n"<<x;

getch(); }
 

C++ Language Learning Design by Insight © 2009