[求助]制表符显示问题
1、要求一个程序:输入一个5位数 比如12345 要求在屏幕上显示1 2 3 4 5 每个数字尖有3个空格距离 不知道怎么写。2、求0~10的平方和立方 要求在屏幕上显示为:
number square cube
0 0 0
1 1 1
2 4 8
3 9 27
4 16 64
5 25 125
6 36 216
7 49 343
8 64 512
9 81 729
10 100 1000
哎 不知道怎么让屏幕显示这样整齐。
1.用%3d输出这这些数
#include <stdio.h>
#include <math.h>
main()
{
int i,j;
scanf("%5d",&i);
for(j=0;j<5;j++)
printf("%3d",i/(int)pow(10,4-j)%10);
printf("\n");
}
2.用\t或者用%nd(n代表所占位数)
#include <stdio.h>
#include <math.h>
main()
{
int i;
printf("number\tsquare\tcube\n");
for(i=1;i<=10;i++)
{
printf("%d\t",i);
printf("%d\t",(int)pow(i,2));
printf("%d\n",(int)pow(i,3));
}
printf("\n");
}