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

33426(955233)林以諾 #13

Open
wants to merge 4 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
16 changes: 16 additions & 0 deletions 955233/33426(955233).txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
33426 林以諾
在進入正題之前,請容我先感嘆一下,用以前人的用語,就是喟然曰...,終於找到了,感動,我從一開始就在亂入...

關於課程
為什麼你想來這個課程?你希望這個課程可以讓你達到什麼狀態,或是成為怎樣的人?
關於未來
你對什麼有興趣?你希望大學可以讀什麼科系?為什麼?

我之所以選這門課,有一部分可以說是趨勢啦、未來啦,程式似乎儼然是現代的必備技能,
另一部分是因為有些興趣(把鍵盤當按鈕在用的人已經不能稱之為興趣。)
,比較貼進我的喜好(比如說:我知道數學對我的成測有幫助,但是沒興趣就不會想多學。),
然後我未來的志向目前是生物或法律(或哲學...主要是社會與人類),(聽起來和程式一點關係都沒有
,但如果有一天要把神經衝擊寫成程式呢?),我當然希望能盡量結合我的目標
(大家應該都聽過什?完全沉浸、刺激理論吧,類似,也可能和心理有關,或者是資安保護法與防詐之類。)
我還在尋找方向,用比較麻煩的話是:船隻在尋找島嶼,但不知道哪個航線能找到島嶼。

17 changes: 17 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include <iostream>
using namespace std;

int main() {
cout << "請輸入兩個需要相加的東西\n";


cout << "數字一";

int num1, num2;
cin >> num1;

cout << "數字二";

cin >> num2;
cout << "相加結果為" << num1+num2;
}
1 change: 1 addition & 0 deletions 連結
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://replit.com/@Yi-Nuo-Moses28/hello-world#main.cpp