Advertisement
jomt1234

Partye

Nov 25th, 2011
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.37 KB | None | 0 0
  1. //partyhardeveryday
  2. //this is not mine so I don't take no credit
  3.  
  4. #include <iostream>
  5. #include <cstdlib>
  6.  
  7.  
  8. using namespace std;
  9. int main()
  10. {
  11.     while(true)
  12.     {
  13.         system("Color 1A");
  14.         std::cout << "\t\t\t    Hello World" << std::endl;
  15.         system("cls");
  16.         system("Color 2B");
  17.         std::cout << "\t\t\t    Hello World" << std::endl;
  18.         system("cls");
  19.         system("Color 3C");
  20.         std::cout << "\t\t\t    Hello World" << std::endl;
  21.         system("cls");
  22.         system("Color 4D");
  23.         std::cout << "\t\t\t    Hello World" << std::endl;
  24.         system("cls");
  25.         system("Color 5E");
  26.         std::cout << "\t\t\t    Hello World" << std::endl;
  27.         system("Color 6F");
  28.         system("cls");
  29.         std::cout << "\t\t\t    Hello World" << std::endl;
  30.         system("cls");
  31.         system("Color A1");
  32.         std::cout << "\t\t\t    Hello World" << std::endl;
  33.         system("cls");
  34.         system("Color B2");
  35.         std::cout << "\t\t\t    Hello World" << std::endl;
  36.         system("Color C3");
  37.         system("cls");
  38.         std::cout << "\t\t\t    Hello World" << std::endl;
  39.         system("Color D4");
  40.         system("cls");
  41.         std::cout << "\t\t\t    Hello World" << std::endl;
  42.         system("Color E5");
  43.         system("cls");
  44.         std::cout << "\t\t\t    Hello World" << std::endl;
  45.         system("Color F6");
  46.         system("cls");
  47.         std::cout << "\t\t\t    Hello World" << std::endl;
  48.         system("cls");
  49.     }
  50.     return 0;
  51. }
  52.  
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement