Untitled
unknown
plain_text
2 years ago
721 B
5
Indexable
#include <string> #include <iostream> using namespace std; int main() { setlocale(LC_ALL, "Russian"); string a[10][10]={ {"8"," ","♖", "♘","♗","♕","♔","♗","♘","♖"}, {"7"," ","♟", "♟","♟","♟","♟","♟","♟","♟"}, {"6"," "," ", " ", " ", " ", " ", " ", " ", " "}, {"5"," "," ", " ", " ", " ", " ", " ", " ", " "}, {"4"," "," ", " ", " ", " ", " ", " ", " ", " "}, {"3"," "," ", " ", " ", " ", " ", " ", " ", " "}, {"2"," ","♙", "♙","♙","♙","♙","♙","♙","♙"}, {"1"," ","♖", "♘","♗","♕","♔","♗","♘","♖"}, {" "," ","A", "B", "C","D", "E", "F","G", "H"} } char b ,c; }
Editor is loading...