Guest User

Untitled

a guest
Nov 20th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include<stdio.h> // 函式 printf 的 header file
  2. #include<stdlib.h>// 函式 system 的 header file
  3.  
  4. int main(void) {
  5. printf("嘻嘻嘻嘻嘻\n"); // 輸出文字
  6. printf(" CCCCcc\n");
  7. printf(" CC\n");
  8. printf(" C\n");
  9. printf("CC\n");
  10. printf(" C\n");
  11. printf(" CC\n");
  12. printf(" CCCCcc\n");
  13. system("pause"); // Console 視窗等待使用者輸入鍵盤上的任意按鍵
  14. printf("C What?!\n");
  15. printf("嘻什麼?\n");
  16. system("pause");
  17. return0;
  18. }
Add Comment
Please, Sign In to add comment