Thursday, December 15, 2011

Thursday 12.15.11

#include
int main()
{
using namespace std;
cout << "Come up and see me some time.";
cout << endl;
cout << "You won't regret it!" << endl;
return 0;
}


///carrots.cpp food processing program
//use and display a program

#include

int main()
{
using namespace std;

int carrots; //declare an integer variable
carrots = 25;
cout << "I have ";
cout << carrots;
cout << " carrots. ";
cout << endl;
carrots = carrots - 1;
cout << "crunch, crunch, crunch now I have " << carrots << " carrots " << endl;
return 0;
}

No comments: