Advertisement
dllbridge

Untitled

Apr 22nd, 2023
710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.34 KB | None | 0 0
  1.  
  2.  
  3. //  Этот пример у Вас не скомпилируется.
  4.  
  5. #include   <dllBridge.h>
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. ////////////////////////////////////////////////////
  16. int main()                                        //
  17. {
  18.  
  19.  
  20.     for(int i = 92; i < 128; i += 1) Transit[2][i] =  i;
  21.  
  22.     system("pause");
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. /*#include <iostream>
  31. using namespace std;
  32.  
  33. int main()
  34. {
  35.     int nArr[2][10];
  36.                    
  37.    
  38.    
  39.  
  40.    
  41.        for(int j = 0; j < 20; j++ )
  42.        {
  43.            nArr[0][j] = 1; 
  44.            
  45.            if(j >= 9 && j <= 10) nArr[0][j] = j;
  46.  
  47.        }
  48.        
  49.    
  50.    
  51.     for(int i = 0;  i <  2; i++ )
  52.     {  
  53.        for(int j = 0; j < 10; j++ )
  54.        {
  55.           cout << nArr[i][j] << "  " ; 
  56.        }  cout        << endl;
  57.     }
  58. }
  59.  
  60.  
  61.  
  62.  
  63. */
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. /*
  71. #include <iostream>
  72. using namespace std;
  73.  
  74. int main()
  75. {
  76.     int nArr[2][10];// = { 1,1,1,1,1,1,1,1,1,9,
  77.                     //   10,1,1,1,1,1,1,1,1,1};
  78.    
  79.    
  80.  
  81.    
  82.        for(int j = 0; j < 20; j++ )
  83.        {
  84.            nArr[0][j] = 1; 
  85.            
  86.            if(j == 9) nArr[0][9] =  9;
  87.            if(j ==10) nArr[1][0] = 10;
  88.        }
  89.        
  90.    
  91.    
  92.     for(int i = 0;  i <  2; i++ )
  93.     {  
  94.        for(int j = 0; j < 10; j++ )
  95.        {
  96.           cout << nArr[i][j] << "  " ; 
  97.        }  cout        << endl;
  98.     }
  99. }
  100.  
  101.  
  102. */
  103.  
  104.  
  105.  
  106. /*
  107. #include <iostream>
  108. using namespace std;
  109.  
  110. int main()
  111. {
  112.     int nArr[2][10];// = { 1,1,1,1,1,1,1,1,1,9,
  113.                     //   10,1,1,1,1,1,1,1,1,1};
  114.    
  115.    
  116.     for(int i = 0;  i <  2; i++ )
  117.     {  
  118.        for(int j = 0; j < 10; j++ )
  119.        {
  120.            nArr[i][j] = 1; 
  121.            
  122.            if(i == 0 && j == 9) nArr[0][9] =  9;
  123.            if(i == 1 && j == 0) nArr[1][0] = 10;
  124.        }
  125.     }  
  126.    
  127.    
  128.     for(int i = 0;  i <  2; i++ )
  129.     {  
  130.        for(int j = 0; j < 10; j++ )
  131.        {
  132.           cout << nArr[i][j] << "  " ; 
  133.        }  cout        << endl;
  134.     }
  135. }
  136.  
  137.  
  138. */
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148. /*
  149. #include <iostream>
  150. using namespace std;
  151.  
  152. int main()
  153. {
  154.     int nArr[2][10] = {1,1,1,1,1,1,1,1,1,9,10,1,1,1,1,1,1,1,1,1};
  155.    
  156.    
  157.     for(int i = 0;  i <  2; i++ )
  158.     {  
  159.        for(int j = 0;   j < 10; j++ )
  160.        {
  161.           cout << nArr[i][j] << "  " ; 
  162.        }  cout        << endl;
  163.     }
  164. }
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174. */
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188. /*
  189. #include <iostream>
  190. using namespace std;
  191.  
  192. int main()
  193. {
  194.     int nArr[2][10] = {1,1,1,1,1,1,1,1,1,9,10,1,1,1,1,1,1,1,1,1};
  195.    
  196.     for (int i = 0; i < 20; i++ )
  197.     {
  198.         cout << nArr[0][i] << endl;
  199.     }
  200. }
  201.  
  202.  
  203.  
  204.  
  205. */
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement