Board logo

標題: 2025/1/10 課堂重點(昀杰) [打印本頁]

作者: 郭竑志    時間: 2025-1-10 18:42     標題: 2025/1/10 課堂重點(昀杰)

[課程重點]
函式的建立與執行 (一)
函式的建立與執行 (二)
函式的建立與執行 (三)
硬幣投擲模擬
進位制
ASCII 編碼系統
[今日作業]
函式的建立與執行 (四)
作者: 陳昀杰    時間: 2025-1-10 19:09

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int plusp(int x,int y,int z)
  4. {
  5.     return x+y+z ;
  6. }
  7. int main()
  8. {

  9.    int a=5,b=6,c=9;
  10.    int k=plusp(a,b,c);
  11.    cout<<k;
  12.     return 0;
  13. }
複製代碼

作者: 陳昀杰    時間: 2025-1-10 19:47

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.    int t,sum0=0,sum1=0;
  6.    float p;
  7.    srand(time(0));
  8.    cin>>t;
  9.    for(int i=0;i<t;i++)
  10.    {

  11.        if(rand()%2==0)
  12.        {
  13.            cout<<"正"<<endl;
  14.            sum0++;
  15.        }
  16.        else
  17.        {
  18.            cout<<"反"<<endl;
  19.             sum1++;
  20.        }
  21.    }
  22.    p=sum1/float(sum0+sum1);
  23.    cout<<sum0<<endl;
  24.    cout<<sum1<<endl;
  25.    cout<<"正"<<p<<endl;

  26.     return 0;
  27. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2