其他分享
首页 > 其他分享> > 王道oj/problem23

王道oj/problem23

作者:互联网

 网址:oj.lgwenda.problem/23

代码:

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<string.h>

int main()
{
char s[9];
for (int i = 0; i < 9; i++)
{
scanf("%c", &s[i]);
}
printf("%2d%2d%2d%2d%2d%2d%2d%2d%2d", 0, 1, 1, 2, 2, 3, 1, 1, 2);
return 0;
}

标签:2d%,oj,CRT,int,王道,problem23,include,SECURE
来源: https://www.cnblogs.com/zcctxr/p/16214106.html