Coding Prep 演算法資料結構教學
歡迎加入我的 Discord 群組與我討論程式相關的問題!
Posted on
by
Derick Wang
⭐
題目連結
把兩個數字加起來
#include <bits/stdc++.h> using namespace std; int main(){ int a, b; cin >> a >> b; cout << a + b << '\n'; }
不了解輸入輸出的同學可以到 這裡 看我的教學!
APCS 教學
Blog at WordPress.com.
發表迴響