Skip to content

Instantly share code, notes, and snippets.

@colesnicov
Created May 30, 2018 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colesnicov/7f845d9326d042a79b44638341c72fc3 to your computer and use it in GitHub Desktop.
Save colesnicov/7f845d9326d042a79b44638341c72fc3 to your computer and use it in GitHub Desktop.
Decimal to Binary converting
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin>>a;
for(int i=7;i>=0;i--)
{
b=(a>>i)&1;
cout<<b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment