C++ :
#include <iostream>
#include <cstdlib>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int garis(int g)
{
int g1;
for(g1=1;g1<=g;g1++)
cout<< " : "<<endl;
return g1;
}
int main(int argc, char** argv) {
up:
int a,b,c,d=8,s;
garis(1);
cout<<"MENGHITUNG KONVERSI DESIMAL KE OKTAL : "<<endl;
garis(1);
cout<<endl;
cout<<"MASUKAN ANGKA : ";
cin>>a;
cout<<endl;
for(b=a;b>0;b/=8)
{s=b%8; c=b/8;
cout<<b<< " : "<<d<<" : "<<c<<" SISA "<<s<<" : " ;
}
cout<<endl;
goto up;
return 0;
}
RAPTOR ngambil dari temen kelompok si :D hihi :D
SEMOGA BERMANFAAT!!! YOmeeennn :D
Tidak ada komentar:
Posting Komentar