Love and Hate Program
Posted by Unknown
//Program in C++ that would open a window with the text "Love and Hate"
#include <iostream>
using namespace std; //standard namespace
int main() //main function
{
cout << "Love and Hate"; //sends text
return 0;
}
P. S. There's no Chapter 3 because I decided to start over with a completely new idea, so while we figure out what we're doing, this is an example of my individual research.
#include <iostream>
using namespace std; //standard namespace
int main() //main function
{
cout << "Love and Hate"; //sends text
return 0;
}
P. S. There's no Chapter 3 because I decided to start over with a completely new idea, so while we figure out what we're doing, this is an example of my individual research.
0 comments: