这篇博客只是我的笔记
(因为没有用平常记笔记的计算机,github又打不开,所以记这里)
#include<stdio.h>
#include<stdlib.h>
int main()
{
int a = 201,b = 013;//由0开头的数字是八进制数
printf("%2d,%2d\n",a,b);
int c = 16;
printf("%d\n%1d\n%2d\n%3d\n%01d\n%02d\n%03d\n%-3d\n",c,c,c,c,c,c,c,c);
system("pause");
return 0;
}