"C Programming Language" Jiang Po Kushiro Editor - Exercises 1-3- Happy New Year

AC Code:

/*
Description 
编写程序在屏幕上显示:
*****************************
       Happy New Year!
*****************************
注意:
29个星号,Happy New Year!首字母大写,中间1个空格隔开,末尾有英文叹号。
H之前7个空格,叹号之后没有空格。
一共3行,中间没有空行。
Input 
没有输入
Output 
*****************************
       Happy New Year!
*****************************
*/


#include <stdio.h>
int main()
{
    printf("*****************************\n");
    printf("       Happy New Year!\n");
    printf("*****************************");
    return 0;
}

 

Released seven original articles · won praise 1 · views 288

Guess you like

Origin blog.csdn.net/qq_45599068/article/details/104082835