Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Этот пример у Вас не скомпилируется.
- #include <dllBridge.h>
- ////////////////////////////////////////////////////
- int main() //
- {
- for(int i = 92; i < 128; i += 1) Transit[2][i] = i;
- system("pause");
- }
- /*#include <iostream>
- using namespace std;
- int main()
- {
- int nArr[2][10];
- for(int j = 0; j < 20; j++ )
- {
- nArr[0][j] = 1;
- if(j >= 9 && j <= 10) nArr[0][j] = j;
- }
- for(int i = 0; i < 2; i++ )
- {
- for(int j = 0; j < 10; j++ )
- {
- cout << nArr[i][j] << " " ;
- } cout << endl;
- }
- }
- */
- /*
- #include <iostream>
- using namespace std;
- int main()
- {
- int nArr[2][10];// = { 1,1,1,1,1,1,1,1,1,9,
- // 10,1,1,1,1,1,1,1,1,1};
- for(int j = 0; j < 20; j++ )
- {
- nArr[0][j] = 1;
- if(j == 9) nArr[0][9] = 9;
- if(j ==10) nArr[1][0] = 10;
- }
- for(int i = 0; i < 2; i++ )
- {
- for(int j = 0; j < 10; j++ )
- {
- cout << nArr[i][j] << " " ;
- } cout << endl;
- }
- }
- */
- /*
- #include <iostream>
- using namespace std;
- int main()
- {
- int nArr[2][10];// = { 1,1,1,1,1,1,1,1,1,9,
- // 10,1,1,1,1,1,1,1,1,1};
- for(int i = 0; i < 2; i++ )
- {
- for(int j = 0; j < 10; j++ )
- {
- nArr[i][j] = 1;
- if(i == 0 && j == 9) nArr[0][9] = 9;
- if(i == 1 && j == 0) nArr[1][0] = 10;
- }
- }
- for(int i = 0; i < 2; i++ )
- {
- for(int j = 0; j < 10; j++ )
- {
- cout << nArr[i][j] << " " ;
- } cout << endl;
- }
- }
- */
- /*
- #include <iostream>
- using namespace std;
- int main()
- {
- int nArr[2][10] = {1,1,1,1,1,1,1,1,1,9,10,1,1,1,1,1,1,1,1,1};
- for(int i = 0; i < 2; i++ )
- {
- for(int j = 0; j < 10; j++ )
- {
- cout << nArr[i][j] << " " ;
- } cout << endl;
- }
- }
- */
- /*
- #include <iostream>
- using namespace std;
- int main()
- {
- int nArr[2][10] = {1,1,1,1,1,1,1,1,1,9,10,1,1,1,1,1,1,1,1,1};
- for (int i = 0; i < 20; i++ )
- {
- cout << nArr[0][i] << endl;
- }
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement