[恢]hdu 2500

2011-12-15 03:28:10

地址:http://acm.hdu.edu.cn/showproblem.php?pid=2500

题意:中文,水。

代码:

# include <stdio.h>


int main ()
{
int T, n, i, j ;
scanf ("%d", &T) ;
while (T--)
{
scanf ("%d", &n) ;
for (i = 0 ; i < n*3 ; i++)
{
for (j = 0 ; j < n ; j++)
printf ("HDU") ;
printf ("\n") ;
}
}
return 0 ;
}



原文地址:https://www.cnblogs.com/lzsz1212/p/2314649.html