返回列表 發帖

我的第一支程式

本帖最後由 鄭又綸 於 2024-8-29 19:55 編輯

在螢幕上顯示 Hello C字樣.
  1. #include<stdio.h>     //引入 <基本輸入輸出> 標頭檔 input & output stream
  2. #include<stdlib.h>      //引入 <標準函式庫> 標頭檔 因用到了syatem("pause");
  3. int main()    //主函式
  4. {
  5.     printf("Hello C!\n");   //printf輸出  \n換行
  6.     system("pause");       //讓畫面暫停
  7.     return 0;              //回傳0到主控台,告知該程式已成功執行
  8. }
複製代碼

此帖僅作者可見

TOP

返回列表