write a program to convert a number input from the keyboard to a string. add sufficient number of"0" in front of the string so that its lenght is equal to that specified by the user as shown in the sample output below:
sample output
Enter a number:23
Enter the minimum lenght required:8
The number becomes 00000023
可解釋你是怎樣想到一個program中間入面的內容?