fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. class ColorPicker {
  6. public:
  7.  
  8. string Color[7] = { "red" , "orange", "yellow", "green", "blue", "indigo", "violet" };
  9.  
  10. friend ostream& operator << (ostream& out, const ColorPicker& ob)
  11. {
  12. for(int i=0; i<7;i++)
  13. {
  14. out<< (ob.Color[i])<<" | ";
  15. }
  16. return out;
  17. }
  18.  
  19. };
  20.  
  21. int main()
  22. {
  23. ColorPicker ob;
  24. cout <<ob<<endl;
  25. //system("pause");
  26. return 0;
  27. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
red | orange | yellow | green | blue | indigo | violet |