Skip to content

Instantly share code, notes, and snippets.

@pinglunliao
Created November 20, 2018 07:51
Show Gist options
  • Save pinglunliao/92d88293e4aed773d6bb7b84bb9c7fda to your computer and use it in GitHub Desktop.
Save pinglunliao/92d88293e4aed773d6bb7b84bb9c7fda to your computer and use it in GitHub Desktop.
#include<stdio.h> // 函式 printf 的 header file
#include<stdlib.h>// 函式 system 的 header file
int main(void) {
printf("嘻嘻嘻嘻嘻\n"); // 輸出文字
printf(" CCCCcc\n");
printf(" CC\n");
printf(" C\n");
printf("CC\n");
printf(" C\n");
printf(" CC\n");
printf(" CCCCcc\n");
system("pause"); // Console 視窗等待使用者輸入鍵盤上的任意按鍵
printf("C What?!\n");
printf("嘻什麼?\n");
system("pause");
return0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment