標題:
2022/11/11 課堂重點(若晴)
[打印本頁]
作者:
葉桔良
時間:
2022-11-11 17:13
標題:
2022/11/11 課堂重點(若晴)
本帖最後由 葉桔良 於 2022-11-11 20:47 編輯
【課程內容】
【NPSC比賽題目】
npsc2010_C幽靈特務報到
npsc2010_D流水不腐
npsc2019_F. bb 與序列
剪刀石頭布
【已練習完題目】
apcs2019_A.貓貓卡牌
npsc2010_A迴文
npsc2010_B薑餅部落的危機
npsc2019_B.金貓、銀貓、呆若木喵
npsc2019_E.背單字
2021npsc_G_三角撞球_C++解題
2021npsc_F_一個遊戲_C++解題
2021npsc_A_圈圈叉叉_C++解題
npsc2019_C.外星時間
選擇排序法
泡沫排序法
作者:
葉桔良
時間:
2022-11-11 17:27
1.
#include <bits/stdC++.h>//萬用標頭檔
using namespace std;
int main(){
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);//加速輸入與輸出
long long a,b;
cin>>a>>b;
cout<<(a+b)<<"\n";
return 0;
}
複製代碼
作者:
葉桔良
時間:
2022-11-11 17:40
本帖最後由 葉桔良 於 2022-11-11 17:43 編輯
2.
#include <bits/stdC++.h>//萬用標頭檔
using namespace std;
int main(){
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);//加速輸入與輸出
int x, a, b;
std::cin>>x;
if(x <= 2000 && x >= 0)
{
if(x>1000)
a=1000;
else
a=x/2;
b=x-a;
std::cout<<a<<" "<<b<<"\n";
}
return 0;
}
複製代碼
作者:
葉桔良
時間:
2022-11-11 17:49
4.
#include <bits/stdC++.h>//萬用標頭檔
using namespace std;
int main(){
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);//加速輸入與輸出
double a, b;
std::cin>>a>>b;
std::cout<<a+b<<"\n";
return 0;
}
複製代碼
作者:
葉桔良
時間:
2022-11-11 18:16
3.
#include <bits/stdC++.h>//萬用標頭檔
using namespace std;
int main()
{
srand(time(NULL));
int question = rand() % 1000 + 1;
int big, small, guess, count = 0;
while(count<=10)
{
count++;
std::cin>>guess;
if(guess > question)
{
big = guess-1;
std::cout<<"higher"<<std::endl;
std::cout << std::flush;
}
else if(guess < question)
{
small = guess+1;
std::cout<<"lower"<<std::endl;
std::cout << std::flush;
}
else
{
break; //跳離迴圈
}
}
return 0;
}
複製代碼
作者:
葉桔良
時間:
2022-11-11 18:41
https://www.wiwiho.me/2021/11/21/npsc2021/
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2