標題:
2025/1/10 課堂重點(昀杰)
[打印本頁]
作者:
郭竑志
時間:
2025-1-10 18:42
標題:
2025/1/10 課堂重點(昀杰)
[課程重點]
函式的建立與執行 (一)
函式的建立與執行 (二)
函式的建立與執行 (三)
硬幣投擲模擬
進位制
ASCII 編碼系統
[今日作業]
函式的建立與執行 (四)
作者:
陳昀杰
時間:
2025-1-10 19:09
#include<bits/stdc++.h>
using namespace std;
int plusp(int x,int y,int z)
{
return x+y+z ;
}
int main()
{
int a=5,b=6,c=9;
int k=plusp(a,b,c);
cout<<k;
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2025-1-10 19:47
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t,sum0=0,sum1=0;
float p;
srand(time(0));
cin>>t;
for(int i=0;i<t;i++)
{
if(rand()%2==0)
{
cout<<"正"<<endl;
sum0++;
}
else
{
cout<<"反"<<endl;
sum1++;
}
}
p=sum1/float(sum0+sum1);
cout<<sum0<<endl;
cout<<sum1<<endl;
cout<<"正"<<p<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2