返回列表 發帖

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

返回列表