[Plain]
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: (print the letter game) print the letter "V ".
* Completion date: January 1, April 18, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
# Define NUM 8
Int main ()
{
Int I;
Int j;
For (I = 1; I <= NUM; I ++)
{
For (j = 1; j <= 2 * NUM; j ++)
{
If (j = I | j = 2 * NUM-I)
{
Printf ("*");
}
Else
{
Printf ("");
}
}
Printf ("\ n ");
}
Return 0;
}
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: (print the letter game) print the letter "V ".
* Completion date: January 1, April 18, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
# Define NUM 8
Int main ()
{
Int I;
Int j;
For (I = 1; I <= NUM; I ++)
{
For (j = 1; j <= 2 * NUM; j ++)
{
If (j = I | j = 2 * NUM-I)
{
Printf ("*");
}
Else
{
Printf ("");
}
}
Printf ("\ n ");
}
Return 0;
}