Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

29342 755542 莊喬宇 #11

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions 755542/29342 755542 莊喬宇 文字作業.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
關於課程:
因為在二年級選修專題的時候,我有參加Arduino專題,發現我對寫程式很有興趣,而且每次都能迅速完成老師的給的題目。我希望這個課程可以讓我成為寫程式高手、參加考試、拿到證書。

關於未來:
我對寫程式及物理化學有興趣,希望大學可以讀理工科,因為興趣是可以支撐我一直走下去的動力。
12 changes: 12 additions & 0 deletions 755542/29342 755542 莊喬宇 程式作業.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#include <iostream>
using namespace std;

int main() {
string name;
cout << "請輸入名字:\n";
cin >> name;
cout << "Hello,";
cout << name;
cout << "!";
cout << "\n";
}