Advertisement
codisinmyvines

forainur

May 24th, 2020
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1. out << "   TURING MACHINES  (ALAN TURING 1937) " << endl;
  2.  
  3.     out << setw(7);
  4.     for (int i = 1; i < kol_sost; i++) {
  5.         out << setw(6) << i;
  6.     }
  7.     out << endl;
  8.     out << '_';
  9.  
  10.     for (sost_in = 1; sost_in < kol_sost; sost_in++)
  11.         out << setw(4) << tabl[sost_in]['_'].sym << tabl[sost_in]['_'].sost<< tabl[sost_in]['_'].move;
  12.     out << endl;
  13.     out << '1';
  14.  
  15.     for (sost_in = 1; sost_in < kol_sost; sost_in++)
  16.         out << setw(4) << tabl[sost_in][sym_in].sym
  17.         << tabl[sost_in][sym_in].sost << tabl[sost_in][sym_in].move;
  18.     out << endl;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement