11 lines
138 B
C
11 lines
138 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
int a;
|
||
|
printf("Input number:");
|
||
|
scanf ("%d", &a);
|
||
|
printf("%#5x", a);
|
||
|
return 0;
|
||
|
}
|