#include using namespace std; int reszta; int binary[100]; int i=0; int wybor; int x; int binarny(x) { while(x>0) { x = x/2; reszta = x%2; i++; binary[i-1] = reszta; cout<< binary[i-1]; } } int main() { cout<<"Co chcesz zrobic? 1 - binarny, 2 - szesnastkowy"<> wybor; switch(wybor) { case 1: cout<