Description
输入一个整数,请你按如下要求输出:
第一行按原样输出,
第二行整数靠右原样输出,不足 8 位左补 0 并在两端添加星号包裹,
第三行整数靠左原样输出,不足 8 位右补空格并在两端添加星号包裹。
Input
一个int范围内的正整数 a 。
Output
共三行,按题目描述输出。
Sample
Input
123456
Output
123456 *00123456* *123456 *
#include <stdio.h>
int main()
{
int x;
scanf("%d",&x);
printf("%d\n",x);
printf("*%08u*\n",x);
printf("*%-8.0u*\n",x);
}
© 版权声明
吾爱博客|AYFRE.COM 版权所有,转载请标明出处。
THE END
请登录后查看评论内容