返回列表 發帖

2023/10/28

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. float b=0;
  4. int a;
  5. int cab(int r)
  6. {
  7.         if(r==0)
  8.         {
  9.                 b++;
  10.         }
  11.         return b;
  12. }
  13. void pr(int r)
  14. {
  15.         if(r==1)
  16.         {
  17.                 cout<<"front";
  18.         }
  19.         else
  20.         {
  21.                 cout<<"back";
  22.         }
  23. }
  24. void ed()
  25. {
  26.         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<<"%";       
  27. }
  28. int main()
  29. {
  30.         cout<<":";
  31.         cin>>a;
  32.         srand(time(NULL));
  33.         int r=0;
  34.         for(int i=0;i<a;i++)
  35.         {
  36.                 r=rand()%2;
  37.                 pr(r);
  38.                 cab(r);
  39.                 cout<<"\n";
  40.         }
  41.         ed();
  42.         return 0;
  43. }       
複製代碼

TOP

林家鉌 2023/10/28 簽到

TOP

返回列表