Basic output – ASCII art
include
using namespace std;
int main() {
// Draw tree
cout << " * " << endl;
cout << " *** " << endl;
cout << " ***** " << endl;
cout << "*******" << endl;
cout << " *** " << endl;
cout << endl << endl << endl;
// Draw cat
cout << " /\\ /\\ " << endl;
cout << " o o " << endl;
cout << " = = " << endl;
cout << " --- " << endl;
cout << endl << endl << endl;
// Draw semi
cout << " _________________ || " << endl;
cout << " |^^^^^^^^^^^^^^^^\\||____ " << endl;
cout << " | Super Cool |||''|'\\__,__ " << endl;
cout << " | ______________ |||__|__|__|)| " << endl;
cout << " (@)@)''''''''''**|(@)(@)**|(@) " << endl;
return 0;
}
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"
