Advertisement
Guest User

Untitled

a guest
Nov 11th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.09 KB | None | 0 0
  1. /******************************************************************************
  2.  
  3.                               Online C++ Compiler.
  4.                Code, Compile, Run and Debug C++ program online.
  5. Write your code in this editor and press "Run" button to compile and execute it.
  6.  
  7. *******************************************************************************/
  8.  
  9. #include <iostream>
  10.  
  11. using namespace std;
  12.  
  13. void one()
  14. {
  15.     cout<<"1Е1Х1Ч1С1П1Н1В1М1"<<endl;
  16. }
  17.  
  18. void two()
  19. {
  20.     cout<<"1И1Е1-1Я1Ч101Н1Т1"<<endl;
  21. }
  22.  
  23. void three()
  24. {
  25.     cout<<"1С1О1Т1П1Р1А1И1Е1"<<endl;
  26. }
  27.  
  28. void four()
  29. {
  30.     cout<<"101Ш1Т1Т1Ь101О1Е1"<<endl;
  31. }
  32.  
  33. void five()
  34. {
  35.     cout<<"1010101Ь101010101"<<endl;
  36. }
  37.  
  38. void six()
  39. {
  40.     cout<<"101Ь1О1А10101М101"<<endl;
  41. }
  42.  
  43. void seven()
  44. {
  45.     cout<<"1010101Т101010101"<<endl;
  46. }
  47.  
  48. void eight()
  49. {
  50.     cout<<"1Л1Ч1О1Р1Я101Д1С1"<<endl;
  51. }  
  52.    
  53.    
  54. int main()
  55. {  
  56.     one();
  57.     three();
  58.     eight();
  59.     two();
  60.     four();
  61.     six();
  62.     seven();
  63.     five();
  64.     cout<<"Hello World"<<endl;
  65.     return 0;
  66. }
  67. /*
  68.  
  69. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement