標題:
2024/11/23課堂重點(冠毅)
[打印本頁]
作者:
郭竑志
時間:
2024-11-9 16:24
標題:
2024/11/23課堂重點(冠毅)
本帖最後由 郭竑志 於 2024-11-23 13:44 編輯
[作業檢討]
打字練習網
中打練習:插插頭、眼不見為淨、民主及自由
超級金頭腦(2)
[課程重點]
複習上次上課內容:clock() 函式、pow() 函式
函式的建立與執行 (一)
函式的建立與執行 (二)
函式的建立與執行 (三)
[今日作業]
打字練習網
中打練習:舉一反三、後生可畏、原來如此、體驗魯凱生活
函式的建立與執行 (四)
硬幣投擲模擬
[下次考試]
作者:
劉冠毅
時間:
2024-11-23 15:11
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<cstring>
using namespace std;
string hello()
{
return "hello";
}
int myPlus(int x,int y)
{
return x+y;
}
int main()
{
int v=myPlus(3,5);
cout<<hello()<<" "<<v;
system("pause");
return 0;
}
複製代碼
作者:
劉冠毅
時間:
2024-11-23 15:25
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<cstring>
using namespace std;
void welcome(int time)
{
for(int i=0;i<time;i++)
{
cout<<"歡迎光臨"<<endl;
}
}
int main()
{
int u;
cin>>u;
welcome(u);
system("pause");
return 0;
}
複製代碼
作者:
劉冠毅
時間:
2024-11-23 15:51
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<cstring>
using namespace std;
void tri()
{
int x,y;
cout<<"輸出下底";
cin>>x;
cout<<"輸出高";
cin>>y;
cout<<"三角形的面積為"<<x*y/2<<"cm2" ;
}
void cir()
{
int r;
cout<<"輸出半徑";
cin>>r;
cout<<"圓形的面積為"<<r*r*3.14<<"cm2" ;
}
void rec()
{
int x, y;
cout<<"輸出寬";
cin>>x;
cout<<"輸出高";
cin>>y;
cout<<"矩形的面積為"<<x*y<<"cm2" ;
}
void tra()
{
int x,y,z;
cout<<"輸出下底";
cin>>x;
cout<<"輸出上底";
cin>>z;
cout<<"輸出高";
cin>>y;
cout<<"梯形的面積為"<<(z+x)*y/2<<"cm2";
}
int main()
{
int sha;
cout<<"要計算哪一種形狀的面積 (1)三角形 (2) 圓形 (3)矩形 (4)梯形" ;
cin>>sha;
switch(sha){
case 1:
tri();
break;
case 2:
cir();
break;
case 3:
rec();
break;
case 4:
tra();
break;
}
system("pause");
return 0;
}
複製代碼
作者:
劉冠毅
時間:
2024-11-23 15:52
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<cstring>
using namespace std;
void welcome(int time)
{
for(int i=0;i<time;i++)
{
cout<<"歡迎光臨"<<endl;
}
}
int main()
{
int u;
cin>>u;
welcome(u);
system("pause");
return 0;
}
複製代碼
作者:
劉冠毅
時間:
2024-11-30 01:09
[attach]20262[/attach]
作者:
劉冠毅
時間:
2024-11-30 14:02
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int n;
srand(time(NULL));
cout<<"請問要投擲幾次?";
cin>>n;
int num[2]={0,0};
for(int i=1;i<=n;i++){
if(rand()%2==0){
cout<<"反面"<<endl;
num[0]=num[0]+1;
}else{
cout<<"正面"<<endl;
num[1]=num[1]+1;
}
}
cout<<endl;
cout<<"在"<<n<<"次的投擲中,"<<"正面出現了"<<num[1]<<"次"<< "反面出現了"<<num[0]<<"次";
float k=float(num[1])/n;
float r=float(num[0])/n;
cout<<endl;
cout<<"<正面"<<k<<"%"<<"反面" <<r<<"%>";
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2