fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char c;
  6. int i1;
  7. float f1;
  8.  
  9. scanf("%d",&i1);
  10. printf("Mary study.no.13is %d (Dec.%d)=(Oct.%o)=(Hex.%x)",i1,i1,i1);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4464KB
stdin
Standard input is empty
stdout
Mary study.no.13is 32766 (Dec.32766)=(Oct.77776)=(Hex.63)