Advertisement
dllbridge

Untitled

Oct 10th, 2024
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.92 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int foo();
  6.  
  7. int summ(int n1, int n2) ;
  8.  
  9.  
  10.  
  11.  
  12. ///////////////////////////////////////////////////
  13. int main()
  14. {
  15.     int n1,                                     //    jkhjkhkj
  16.          n;                                     //  kjkljkljkj
  17.    
  18.    
  19.     std::cout << " const = " << 555        << endl;
  20.          cout << " n     = " <<   n        << endl;    
  21.          cout << " foo   = " << foo()      << endl;
  22.          cout << " summ  = " << summ(5, 8) << endl;
  23. return 0;
  24. }
  25.  
  26.  
  27.  
  28. ///////////////////////////////////////////////////
  29. int summ(int n1, int n2)                         //  
  30. {
  31.      
  32.      
  33. return n1 + n2;    
  34. }
  35.  
  36.  
  37.  
  38. ///////////////////////////////////////////////////
  39. int foo()                                        //  
  40. {
  41.      
  42.      
  43. return 278;    
  44. }
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64. /*
  65.  
  66. #include <iostream>
  67. using namespace std;
  68.  
  69.  
  70.  
  71. ///////////////////////////////////////////////////
  72. int main()
  73. {
  74.  
  75.    
  76.    
  77.     std::cout << " Hello !" << endl;
  78.    
  79.    
  80. return 0;
  81. }
  82.  
  83.  
  84.  
  85.  
  86. */
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97. //                                                                             (   )      
  98. //                                                                            (    )
  99. //                                                                             (    )
  100. //                                                                            (    )
  101. //                                                                              )  )
  102. //                                                                             (  (                  /\
  103. //                                                                              (_)                 /  \  /\
  104. //                                                                      ________[_]________      /\/    \/  \
  105. //                                                             /\      /\        ______    \    /   /\/\  /\/\
  106. //                                                            /  \    //_\       \    /\    \  /\/\/    \/    \
  107. //                                                     /\    / /\/\  //___\       \__/  \    \/
  108. //                                                    /  \  /\/    \//_____\       \ |[]|     \
  109. //                                                   /\/\/\/       //_______\       \|__|      \
  110. //                                                  /      \      /XXXXXXXXXX\                  \
  111. //                                                          \    /_I_II  I__I_\__________________\
  112. //                                                                 I_I|  I__I_____[]_|_[]_____I
  113. //                                                                 I_II  I__I_____[]_|_[]_____I
  114. //                                                                 I II__I  I     XXXXXXX     I
  115. //                                                               E-mail:    dllbridge@gmail.com                
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123. /*
  124. //  Альтернативный вариант простейшей программы. Exe-файл будет "весить" меньше в несколько десятков раз !!!
  125.  
  126. #include   <stdio.h>
  127. #include  <locale.h>       //  здесь "живёт" setlocale(LC_ALL, "rus");
  128.  
  129. //#include  <iostream>
  130. //using namespace std;
  131.  
  132. ////////////////////////////////////////////////
  133. int main()
  134. {
  135.    
  136.    
  137.     setlocale(LC_ALL, "rus");
  138.    
  139.     int n = 0;
  140.    
  141.   //  scanf("%d", &n); 
  142.            
  143.     printf("Верные символы %d\n", n);  
  144.    
  145.   //  std::cout << " Hello !\n" ;
  146.  
  147. return 0;
  148. }
  149. */
  150.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement