【問題目標】
寫一程式,程式能與使用者打招呼

【演算法】
1.輸入使用者姓名.
2.與使用者說 hello

【c 程式碼】
int main() {
   char name[7]; //宣告字元陣列
   printf("Input your name:"); //輸出函數
   scanf("%s",name); //輸入函數
   printf("Hello %s!\n",name);
}

【c++ 程式碼】

#include <iostream>
#include <string>

int main(int argc, char** argv) {
     std::string name=""; //宣告字串
     std::cout << "Input your name:"; //輸出函數
     std::cin >> name; //輸入函數
     std::cout << "Hello " << name << "!";
     return(0);
}


學習重點:
1.C++ / C 語言程式架構
2.以 { } 形成區塊命令
3.指令終結符號 ;
3.變數必須宣告
4.變數名稱大小寫有別
5.勿違反變數命名規則
6.C 輸入函數與變數之位址關係
7.輸出函數與變數內容關係
8.字串表達方式 ""
9.基本資料型態 char
10.字元串陣列 [ ]

bug 實驗