X-Git-Url: https://git.realraum.at/?p=svn42.git;a=blobdiff_plain;f=dart%2Fpc.cpp;fp=dart%2Fpc.cpp;h=0000000000000000000000000000000000000000;hp=6f43debf7f3a990a7657337d977a37e1e4dc81b9;hb=8e8f26d01ab21db191f62f2732808dcb75e8a74f;hpb=050398149d26f27a0b19971cbcea990574d73a57 diff --git a/dart/pc.cpp b/dart/pc.cpp deleted file mode 100644 index 6f43deb..0000000 --- a/dart/pc.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#include - -int main() -{ - unsigned char c =0; - unsigned char sym =0; - int counter = 1000; - while( counter--) - { - std::cin >> c; - for(int i = 0; i<8; i++) - { - sym = c & (1<<7); - if( sym) - { - std::cout << "1,"; - } else { - std::cout << "0,"; - } - c<<=1; - } - } -}