题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4716
*------------* |............| |............| |............| |............| |............| |............| |............| |............| |............| |............| *------------*
*------------* |............| |............| |............| |............| |------------| |------------| |------------| |------------| |------------| |------------| *------------*
2 0 60
Case #1: *------------* |............| |............| |............| |............| |............| |............| |............| |............| |............| |............| *------------* Case #2: *------------* |............| |............| |............| |............| |------------| |------------| |------------| |------------| |------------| |------------| *------------*
代码如下:
#include <stdio.h>
#include <string.h>
int main()
{
int t,i,j,n,cas=1;
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
char mp[20][20]= {"*------------*",
"|............|",
"|............|",
"|............|",
"|............|",
"|............|",
"|............|",
"|............|",
"|............|",
"|............|",
"|............|",
"*------------*"
};
n/=10;
for(i=1; i<=n; i++)
{
for(j=1; j<=12; j++)
mp[11-i][j]='-';
}
printf("Case #%d:\n",cas++);
for(i=0; i<12; i++)
{
for(j=0; j<14; j++)
{
printf("%c",mp[i][j]);
}
printf("\n");
}
}
return 0;
}
HDU 4716 A Computer Graphics Problem(模拟啊 )
原文:http://blog.csdn.net/u012860063/article/details/41877117