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

950054_33902_許季芸 #3

Open
wants to merge 5 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
1 change: 1 addition & 0 deletions 950054/950054_33902_許季芸2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.我對心理學有興趣,希望大學可以讀心理系,因為我從小就對心理學有興趣。
12 changes: 12 additions & 0 deletions 950054/950054_33902_許季芸_9月29日_作業.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#include <iostream>
using namespace std;

int main() {
cout << "請輸入三個" << "要相減的數字";

int num1, num2, num3;
cin >> num1 >> num2 >> num3;

cout << "相減結果 num1 - num2 - num3 = " << num1 - num2 - num3;

}