標題:
2023/10/28 上課重點(家鉌)
[打印本頁]
作者:
陳育霖
時間:
2023-10-27 18:26
標題:
2023/10/28 上課重點(家鉌)
本帖最後由 陳育霖 於 2023-10-27 19:13 編輯
遠距教學連結
會議連結 - 1
會議連結 - 2
今日課堂重點:
複習
字串處理 (六) - 取得字串長度 1
複習
字串處理 (七) - 取得字串長度 2
字串處理 (八) - 將字串轉換為ASCII碼
字串處理 (九) - 將ASCII碼轉換為字串
403 字串與檔案處理 (字串大小寫轉換)
字串處理 (十) - 判斷大小寫
stringstream 字串串流 (一)
stringstream 字串串流 (二)
今日考試:
401 字串與檔案處理 (字串長度與連結)
作者:
林家鉌
時間:
2023-10-28 14:57
林家鉌 2023/10/28 簽到
作者:
林家鉌
時間:
2023-10-28 15:00
#include<bits/stdc++.h>
using namespace std;
float b=0;
int a;
int cab(int r)
{
if(r==0)
{
b++;
}
return b;
}
void pr(int r)
{
if(r==1)
{
cout<<"front";
}
else
{
cout<<"back";
}
}
void ed()
{
cout<<"\n\nfront: "<<a-b<<"\tback: "<<b<<"\nThe proportion of the front is: "<<(a-b)/a*100<<"%\nthe proportion of the back is: "<<b/a*100<<"%";
}
int main()
{
cout<<":";
cin>>a;
srand(time(NULL));
int r=0;
for(int i=0;i<a;i++)
{
r=rand()%2;
pr(r);
cab(r);
cout<<"\n";
}
ed();
return 0;
}
複製代碼
作者:
陳育霖
時間:
2023-10-28 15:05
2023/10/28
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2