

% Program to convert integer decimal numbers to 
% equivalent numbers in other bases

% Read integer number
Int=input('integer=');

% BaseConv(Int,8);
% BaseConv(Int,2);
% BaseConv(Int,16);

BaseConv2(Int,8);
BaseConv2(Int,2);
BaseConv2(Int,16);






