Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <stdio.h>
- #include <stdlib.h>
- using namespace std;
- int main()
- {
- int l=0,licznik=-1,l2,licznik2=-1;
- cout<<"Podaj liczbe dziesietna, ktora chcesz przeksztalcic na system dwojkowy oraz szesnastkowy"<<endl;
- cin>>l;
- l2=l;
- int tab[30];
- for(int i=0;l>0;i++){
- if(l%2==0){
- tab[i]=0;
- }else if(l%2==1){
- tab[i]=1;
- }
- l/=2;
- licznik++;
- }
- cout<<"Binarnie: ";
- for(int j=licznik;j>=0;j--){
- cout<<tab[j];
- }
- cout<<endl;
- //!Do poprawki nizej
- /*
- string tab2[30];
- int liczba;
- for(int i=0;l2>0;i++){
- if(l2%16<10){
- liczba=l2%16;
- tab2[i]= liczba;
- }else if(l2%16==10){
- tab2[i]="A";
- }else if(l2%16==11){
- tab2[i]="B";
- }else if(l2%16==12){
- tab2[i]="C";
- }else if(l2%16==13){
- tab2[i]="D";
- }else if(l2%16==14){
- tab2[i]="E";
- }else if(l2%16==15){
- tab2[i]="F";
- }
- l2/=16;
- if(l2!=0)licznik2++;
- }
- cout<<"Szesnastkowo: ";
- for(int j=licznik2;j>=0;j--){
- cout<<tab2[j];
- }
- */
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement