Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

int main()

string color,pluralnoun, celebrity;

cout << "enter a col0r" << ;


getline (cin, color);
cout << "enter a plural noun" << ;
getline (cin, pluralnoun);
cout << "enter a celebrity" << ;
getline (cin, celebrity);

cout << "roses are " << color << endl;


cout << plural noun << " are blue" << endl;
cout << " i love " << celebrity << endl;

return 0;

You might also like