BaysideLizard 发表于 2023-6-22 22:53:39

S1E3:打印

#include <stdio.h>
//BaysideLizard写于2023年6月20日
int main()
{
        printf("printf:格式化输出函数\n\
I love You!\n");//注意:打一个\后可以换行接着写
    printf("Hello world\b\b\b\b\bFishC\n");
    printf("\n\
         @\n\
      / \\\n\
      * *\n\
      * *\n\
      * *\n\
    * * * * * *\n\
* * * * * * * *\n\
* * * * * * * * * *\n\
      * *\n\
      * *\n\
      * * * *\n\
    * * * * * *\n");
        return 0;
}

运行结果:
printf:格式化输出函数
I love You!
Hello FishC

         @
      / \
      * *
      * *
      * *
    * * * * * *
* * * * * * * *
* * * * * * * * * *
      * *
      * *
      * * * *
    * * * * * *

--------------------------------
Process exited after 0.004823 seconds with return value 0
请按任意键继续. . .

跟着小甲鱼学C的第二天
加油!{:5_106:}

yinda_peng 发表于 2023-6-23 09:53:37

加油{:10_275:}
页: [1]
查看完整版本: S1E3:打印