Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.51 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <cstdlib>
  4. #include <string>
  5. #include <fstream>
  6. using namespace std;
  7.  
  8. int main()
  9.  
  10. {
  11.     cout<<"1 -  10->16 , 2- 16->10"<<endl;
  12.    
  13.     int a,liczba,c;
  14.     string table[100];
  15.     cin>>a;
  16.     cout<<"podaj liczbe"<<endl;
  17.    
  18.     switch(a)
  19.     {
  20.     case 1:
  21.         cin>>liczba;
  22.         cout<<endl<<"wynik to: "<<endl;
  23.        
  24.         while(liczba>15)
  25.         {
  26.            
  27.             c = liczba%16;
  28.            
  29.             if(c == 0)
  30.             cout<<"0";
  31.             if(c == 1)
  32.             cout<<"1";
  33.             if(c == 2)
  34.             cout<<"2";
  35.             if(c == 3)
  36.             cout<<"3";
  37.             if(c == 4)
  38.             cout<<"4";
  39.             if(c == 5)
  40.             cout<<"5";
  41.             if(c == 6)
  42.             cout<<"6";
  43.             if(c == 7)
  44.             cout<<"7";
  45.             if(c == 8)
  46.             cout<<"8";
  47.             if(c == 9)
  48.             cout<<"9";
  49.             if(c == 10)
  50.             cout<<"a";
  51.             if(c == 11)
  52.             cout<<"b";
  53.             if(c == 12)
  54.             cout<<"c";
  55.             if(c == 13)
  56.             cout<<"d";
  57.             if(c == 14)
  58.             cout<<"e";
  59.             if(c == 15)
  60.             cout<<"f";
  61.             cout<<endl;
  62.            
  63.             liczba = (liczba-c)/16;
  64.         }
  65.              c = liczba;
  66.              
  67.             if(c == 0)
  68.             cout<<"0";
  69.             if(c == 1)
  70.             cout<<"1";
  71.             if(c == 2)
  72.             cout<<"2";
  73.             if(c == 3)
  74.             cout<<"3";
  75.             if(c == 4)
  76.             cout<<"4";
  77.             if(c == 5)
  78.             cout<<"5";
  79.             if(c == 6)
  80.             cout<<"6";
  81.             if(c == 7)
  82.             cout<<"7";
  83.             if(c == 8)
  84.             cout<<"8";
  85.             if(c == 9)
  86.             cout<<"9";
  87.             if(c == 10)
  88.             cout<<"a";
  89.             if(c == 11)
  90.             cout<<"b";
  91.             if(c == 12)
  92.             cout<<"c";
  93.             if(c == 13)
  94.             cout<<"d";
  95.             if(c == 14)
  96.             cout<<"e";
  97.             if(c == 15)
  98.             cout<<"f";
  99.             cout<<endl;
  100.  
  101.    
  102.         break;     
  103.         case 2:
  104.         //porzucilem
  105.  
  106.         break;
  107. }
  108.    
  109.     return 0;
  110. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement