Home > Back-end >  A beginner, for help
A beginner, for help

Time:09-29

Draw a process flow diagram that hexadecimal conversion program

Program function description: input an octal number (not more than three), output the number of the corresponding decimal number,

Input the sample: 17

Output sample: 17 (8)=15 (10)

The input sample: 111

Output sample: 111 (8)=73 (10)

CodePudding user response:

Don't to brother, at least your part drawing, have what mistake we can help you to see

CodePudding user response:

CodePudding user response:

C language seems to support the input octal, is actually % o
  • Related