View Single Post
  #4 (permalink)  
Old July 21st, 2008, 04:48 AM
TheEng TheEng is offline
Registered User
 
Join Date: Jul 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default


 #include <iostream.h>
 int main()
 {
 int x = 5;
 int y = 7;
 cout "\n";
 cout << x + y << " " << x * y;
 cout "\n";

 return 0; // forgot the 0;
 }


Reply With Quote