fork download
  1. #include <stdio.h>
  2. int main() {
  3. int i, n, x, s, ld;
  4. s = 0;
  5. scanf("%d", &n);
  6. while (n >= 1) {
  7. x = n % 2;
  8. s = s * 10 + x;
  9. n = n / 2;
  10. }
  11. while (s != 0) {
  12. ld = s % 10;
  13. printf("%d", ld);
  14. s = s / 10;
  15. }
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
3337547821