herrDeng網內搜尋

自訂搜尋

Ads

2010年5月18日 星期二

用C產生100個41~90的亂數

用C產生100個41~90的亂數

並找出min!

Hint: srand(), rand(), 陣列

49 則留言:

B9833162 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
      int a[N];
      srand((unsigned)time(NULL));
      int i=rand();
      for(int x=0; x<N; x++)
      {
      a[x]=rand()%50+41;
      cout<<"a["<<x<<"]="<<a[x]<<endl;
      }     
      int min=a[0];
      for(int s=1;s<N;s++)
      {
      if(min>a[s])
      min=a[s];
      }
      cout<<"min="<<min<<endl;
   system("pause");
return 0;
}

B9833158 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int a[N];
    srand((unsigned)time(NULL));
    for(int x=0;x<100;x++)
    {
            a[x]=rand()%50+41;
            cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if(min>a[i])
           min=a[i];
    }
    cout<<"最小值為:"<<min<<endl;
    system("pause");
    return 0;
}

B9833135 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int a[N];
    srand((unsigned)time(0));
    for (int x=0;x<100;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x+1<<"] = "<<a[x]<<"\n";
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if (min>a[i])
           min=a[i];
    }
    cout<<"最小值為"<<min<<"\n";
    system("pause");
    return 0;
}

B9833124 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
 int a[N];
 srand((unsigned) time(0));
  for (int x=0; x<100; x++)
 {
  a[x]=rand()%50+41;
  cout<<"a["<<x<<"]="<<a[x]<<endl;
 }
 int min=a[0];
 for(int i=1;i<100;i++)
 {
  if(min>a[i])
     min=a[i];
 }
 cout<<"min="<<min<<endl;
 system("Pause");
 return 0;
}

B9833153 提到...

#define N 100
#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[N];
    srand ((unsigned) time(NULL));
    int i =rand();
    cout<<i<<endl;
    for (int x=0;x<N;x++)
   
       
   
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
     int min=a[0];
        for(int i=1;i<N;i++)
        {
                        if(min>a[i])
                        min=a[i];
        }
    unsigned endtime=clock();
     cout<<"CPU time:"
         <<(double)(endtime-starttime)/CLK_TCK
         <<"sec"<<endl;
     cout<<"min="<<min<<endl;   
     system("pause");
     return 0;
}   

B9833131 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
   int a[N];
   srand((unsigned)time(0));
   int i=rand();
   cout<<i<<"\n";
   for (int x=0;x<100;x++)
   {
       a[x]=rand()%50+41;
       cout<<"a["<<x<<"] = "<<a[x]<<"\n";
   }
  
   int min=a[0];
   for (int i=1;i<N;i++)
   {
       if (min>a[i])
           min=a[i];
   }
   cout<<"最小值為"<<min<<"\n";
   system("pause");
   return 0;
}
  

B9833169 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[N];
    srand ((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for (int x=0;x<N;x++)
    {
        a[x]=rand()%50+41;
    cout<<"a["<<x<<"]="<<a[x]<<endl;
       }
        int min=a[0];
    for(i=1;i<N;i++)
{
           if(min>a[i])
           min=a[i];
}
     unsigned endtime=clock();
     cout<<"CPU time:"
     <<(double)(endtime-starttime)/CLK_TCK
     <<"sec"<<endl;
     cout<<"min="<<min<<endl;
   
 
        system("pause");
        return 0;
       
        }

B9833137 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    int a[N];
    srand((unsigned)time(0));
    int i=rand();
    cout<<i<<"\n";
    for (int x=0;x<100;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"] = "<<a[x]<<"\n";
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if (min>a[i])
        min=a[i];
        }
        cout<<"最小值為"<<min<<"\n";
        system ("pause");
        return 0;
        }

B9833130 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[100];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for (int x=0;x<100;x++)
{
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<endl;
}
        int min=a[0];
        for (int i=1;i<N;i++)
        {
            if(min>a[i])
               min=a[i];
}
    cout<<"最小值為"<<min<<"\n";
       
        system("pause");
        return 0;
}

B9833125 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a [100];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for(int x=0;x<100;x++)
    {
    a[x]=rand()%50+41;
    cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if (min>a[i])
            min=a[i];
    }
    cout<<"最小值為"<<min<<"\n";
    
    system("pause");
    return 0;
}

b9833175 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std ;
int main ()
{
     int a[100];
     srand ((unsigned)time(NULL));
     for (int x=0 ; x<100 ;x++)
     {
         a[x]=rand()% 50+41 ;
         cout<<"a["<<x+1<<"]="<<a[x]<<endl;
     }
     int min=a[0];
     for (int i=0;i<N;i++)
     {
         if (min>a[i])
         min=a[i];
     }
     cout<<"min="<<min<<"\n";
          system ("pause");
         return 0 ;
     }

b9833172 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std ;
int main ()
{
     int a[100];
     srand ((unsigned)time(NULL));
     for (int x=0 ; x<100 ;x++)
     {
         a[x]=rand()% 50+41 ;
         cout<<"a["<<x+1<<"]="<<a[x]<<endl;
     }
     int min=a[0];
     for (int i=0;i<N;i++)
     {
         if (min>a[i])
         min=a[i];
     }
     cout<<"min="<<min<<"\n";
          system ("pause");
         return 0 ;
     }

B9833121 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
    int a[N];
    srand ((unsigned)time(0));
     for(int x=0;x<100;x++)
     {
        a[x]=rand()%50+41;
        cout<<"a["<<x+1<<"]="<<a[x]<<"\n";
        }
        int min=a[0];
        for(int i=1;i<N;i++)
        {
                if (min>a[1])
                min=a[1];
                }
                cout<<"最小值為"<<min<<"\n";
                system("pause");
                return 0;
                }

B9833139 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a [100];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for(int x=0;x<100;x++)
    {
    a[x]=rand()%50+41;
    cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if (min>a[i])
            min=a[i];
    }
    cout<<"最小值為"<<min<<"\n";
    
    system("pause");
    return 0;
}

b9833154 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main ()
{
    unsigned starrime=clock();
    int a [100];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for (int x=0;x<100;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<endl;
        }
        int min=a[0];
        for (int i=1;i<N;i++)
        {
            if(min>a[i])
            min=a[i];
            }
        cout<<"最小值為"<<min<<"\n";
        system("pause");
        return 0;
}

B9833121 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
    int a[N];
    srand ((unsigned)time(0));
     for(int x=0;x<100;x++)
     {
        a[x]=rand()%50+41;
        cout<<"a["<<x+1<<"]="<<a[x]<<"\n";
        }
        int min=a[0];
        for(int i=1;i<N;i++)
        {
                if (min>a[i])
                min=a[i];
                }
                cout<<"最小值為"<<min<<"\n";
                system("pause");
                return 0;
                }

B9833167 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
    int a[N];
    srand ((unsigned)time(0));
     for(int x=0;x<100;x++)
     {
        a[x]=rand()%50+41;
        cout<<"a["<<x+1<<"]="<<a[x]<<"\n";
        }
        int min=a[0];
        for(int i=1;i<N;i++)
        {
                if (min>a[i])
                min=a[i];
                }
                cout<<"最小值為"<<min<<"\n";
                system("pause");
                return 0;
                }

B9833123 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[N];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for (int x=0;x<100;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<endl;
        }
       int min=a[0];
        for(i=1;i<N;i++)
        {
                if(min>a[i])
                min=a[i];
                }
       unsigned endtime=clock();
        cout<<"CUP time:"
            <<(double)(endtime-starttime)/CLK_TCK<<"sec"<<endl;    
        cout<<"最小值為"<<min<<endl;
    system("pause");
    return 0;
}

B9833128 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int a[N];
    srand((unsigned) time(0));
    for (int x=0;x<100;x++)
    {
     a[x]=rand()%50+41;
     cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for (int i=1;i<100;i++)
    {
     if(min>a[i])
       min=a[i];
    }
    cout<<"最小值為="<<min<<endl;
    system("pause");
    return 0;
}

B9833145 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[N];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for (int x=0;x<100;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<endl;
        }
       int min=a[0];
        for(i=1;i<N;i++)
        {
                if(min>a[i])
                min=a[i];
                }
       unsigned endtime=clock();
        cout<<"CUP time:"
            <<(double)(endtime-starttime)/CLK_TCK<<"sec"<<endl;    
        cout<<"最小值為"<<min<<endl;
    system("pause");
    return 0;
}

b9833142 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main ()
{
    unsigned starrime=clock();
    int a [100];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for(int x=0;x<100;x++)
    {
    a[x]=rand()%50+41;
    cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if(min>a[i])
        min=a[i];
    }
    cout<<"最小值為"<<min<<"\n";
    system("pause");
    return 0;

b9833161 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[N];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for(int x=0;x<N;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for(i=1;i<N;i++)
    {
        if(min>a[i])
        min=a[i];
    }
    cout<<"min="<<min<<endl;
    unsigned endtime=clock();
    cout<<"CUP time:"<<(double)(endtime-starttime)/CLK_TCK<<"sec"<<endl;
    system("pause");
    return 0;
}

B9833157 提到...

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    int a [100];
    srand((unsigned)time(0));
    int i = rand();
    cout<<i<<endl;
    for (int x=0;x<100;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<"\n";
    }
    int min=a[0];
    for (int i=1;i<100;i++)
    {
        if (min>a[i])
         min=a[i];
    }
     cout<<"最小值為"<<min<<"\n";   
    system("pause");
    return 0;
}

B9833133 提到...

#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;
int main()
{
    int a[100];
    srand((unsigned)time(0));
    int i=rand();
    cout<<i<<endl;
    for(int x=0;x<100;x++)
{
    a[x]=rand()%50+41;
    cout<<"a["<<x<<"]="<<a[x]<<endl;
}
    int min=a[0];
    for(int i=1;i<100;i++)
    {
            if(min>a[i])
            min=a[i];
    }
    cout<<"最小值為"<<min<<endl;
    system("Pause");
    return 0;
}

B9833152 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
    int a[N];
    srand ((unsigned)time(0));
     for(int x=0;x<100;x++)
     {
        a[x]=rand()%50+41;
        cout<<"a["<<x+1<<"]="<<a[x]<<"\n";
        }
        int min=a[0];
        for(int i=1;i<N;i++)
        {
                if (min>a[i])
                min=a[i];
                }
                cout<<"最小值為"<<min<<"\n";
                system("pause");
                return 0;
                }

B9833174 提到...

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
   unsigned starttime=clock();
   int a[N];
   srand((unsigned)time(NULL));
   int i=rand();
   cout<<i<<endl;
   for (int x=0;x<100;x++)
   {
       a[x]=rand()%50+41;
       cout<<"a["<<x<<"]="<<a[x]<<endl;
       }
      int min=a[0];
      for(i=1;i<N;i++)
      {
      if(min>a[i])
      min=a[i];
      }
       unsigned endtime=clock();
       cout<<"CUP time:"
           <<(double)(endtime-starttime)/CLK_TCK<<"sec"<<endl;
       cout<<"min="<<min<<endl;    
   system("pause");
   return 0;
   }

B9833140 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a[N];
srand ((unsigned)time(NULL));
for(int x=0;x<N;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x+1<<"]="<<a[x]<<endl;
}
int min=a[0];
for( int i=1;i<N;i++)           
{
    if(min>a[i])
    min=a[i];
}
cout<<"min="<<min<<"\n";
    system("pause");
    return 0;
}

b9833129 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int a[N];
    srand((unsigned)time(0));
    for (int x=0;x<100;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x+1<<"] = "<<a[x]<<"\n";
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if (min>a[i])
           min=a[i];
    }
    cout<<"最小值為"<<min<<"\n";
    system("pause");
    return 0;
}

B9833141 提到...

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
   unsigned starttime=clock();
   int a[N];
   srand((unsigned)time(NULL));
   int i=rand();
   cout<<i<<endl;
   for (int x=0;x<100;x++)
   {
       a[x]=rand()%50+41;
       cout<<"a["<<x<<"]="<<a[x]<<endl;
       }
      int min=a[0];
      for(i=1;i<N;i++)
      {
      if(min>a[i])
      min=a[i];
      }
       unsigned endtime=clock();
       cout<<"CUP time:"
           <<(double)(endtime-starttime)/CLK_TCK<<"sec"<<endl;
       cout<<"min="<<min<<endl;    
   system("pause");
   return 0;
   }

B9833171 提到...

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
   unsigned starttime=clock();
   int a[N];
   srand((unsigned)time(NULL));
   int i=rand();
   cout<<i<<endl;
   for (int x=0;x<100;x++)
   {
       a[x]=rand()%50+41;
       cout<<"a["<<x<<"]="<<a[x]<<endl;
       }
      int min=a[0];
      for(i=1;i<N;i++)
      {
      if(min>a[i])
      min=a[i];
      }
       unsigned endtime=clock();
       cout<<"CUP time:"
           <<(double)(endtime-starttime)/CLK_TCK<<"sec"<<endl;
       cout<<"min="<<min<<endl;    
   system("pause");
   return 0;
   }

B9833140 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a[N];
srand ((unsigned)time(NULL));
for(int x=0;x<N;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x+1<<"]="<<a[x]<<endl;
}
int min=a[0];
for( int i=1;i<N;i++)           
{
    if(min>a[i])
    min=a[i];
}
cout<<"min="<<min<<"\n";
    system("pause");
    return 0;
}

B9833150 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a[N];
srand ((unsigned)time(NULL));
for(int x=0;x<N;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x+1<<"]="<<a[x]<<endl;
}
int min=a[0];
for( int i=1;i<N;i++)           
{
    if(min>a[i])
    min=a[i];
}
cout<<"min="<<min<<"\n";
    system("pause");
    return 0;
}

b9833122 提到...
網誌管理員已經移除這則留言。
B9833140 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a[N];
srand ((unsigned)time(NULL));
for(int x=0;x<N;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x+1<<"]="<<a[x]<<endl;
}
int min=a[0];
for( int i=1;i<N;i++)           
{
    if(min>a[i])
    min=a[i];
}
cout<<"min="<<min<<"\n";
    system("pause");
    return 0;
}

B9833160 提到...

#define N 100
#include<iostream>
#include<ctime>
#include<cstdlib>

using namespace std;
int main()
{
unsigned starttime=clock();
int a[N];
srand((unsigned)time(NULL));
int i=rand();
cout<<i<<endl;
for (int x=0;x<N;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x<<"]="<<a[x]<<endl;
}
int min=a[0];
for(i=1;i<N;i++)
{
if(min>a[i])
min=a[i];
}
int max=a[0];
for(i=1;i<N;i++)
{
if(max<a[i])
max=a[i];
}
cout<<"max="<<max<<endl;
cout<<"min="<<min<<endl;
unsigned endtime=clock();
cout<<"CPU time:"
<<(double)(endtime-starttime)/CLK_TCK
<<"sec"<<endl;
system("pause");
return 0;
}

b9833160 提到...

#define N 100
#include<iostream>
#include<ctime>
#include<cstdlib>

using namespace std;
int main()
{
unsigned starttime=clock();
int a[N];
srand((unsigned)time(NULL));
int i=rand();
cout<<i<<endl;
for (int x=0;x<N;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x<<"]="<<a[x]<<endl;
}
int min=a[0];
for(i=1;i<N;i++)
{
if(min>a[i])
min=a[i];
}
int max=a[0];
for(i=1;i<N;i++)
{
if(max<a[i])
max=a[i];
}
cout<<"max="<<max<<endl;
cout<<"min="<<min<<endl;
unsigned endtime=clock();
cout<<"CPU time:"
<<(double)(endtime-starttime)/CLK_TCK
<<"sec"<<endl;
system("pause");
return 0;
}

B9833170 提到...

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[100];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for(int x=0;x<100;x++)
    {
    a[x]=rand()%50+41;
    cout<<"a["<<x+1<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for (int i=0;i<100;i++)
    {
        if(min>a[i])
        min=a[i];
    }
    cout<<"min="<<min<<endl;
       
    system("pause");
    return 0;
}   

B9833173 提到...

#define N 100
#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;{
    unsigned starttime=clock();
    int a[N];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for(int x=0;x<100;x++)
    {
            a[x]=rand()%50+41;
            cout<<"a[2x"<<x<<"]="<<a[x]<<endl;
    }           
    int min=a[0];
    for(i=1;i<N;i++)
    {
                    if(min>a[i])
                    min=a[i];
                   
    }
    cout<<min<<endl;
    unsigned endtime=clock();
    cout<<"CPU time;"
        <<(double)(endtime-starttime)/CLK_TCK
        <<"sec"<<endl;
    system("pause");
    return 0;
}       

B9833155 提到...

#define N 100
#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;
int main()
{
unsigned starttime=clock();
int a[N];
srand((unsigned)time(NULL));
int i=rand();
cout<<i<<endl;
for(int x=0;x<100;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x<<"]="<<a[x]<<endl;
}
int min=a[0];
for(i=1;i<N;i++)
{
if(min>a[i])
min=a[i];
}
cout<<"min:"<<min<<endl;
unsigned endtime=clock();
cout<<"CPU time:"
<<(double)(endtime-starttime)/CLK_TCK
<<"sec"<<endl;
system("pause");
return 0;
}

b9833160 提到...

#define N 100
#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[N];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for (int x=0;x<N;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for(i=1;i<N;i++)
    {
                   if(min>a[i])
                   min=a[i];
    }
    int max=a[0];
    for(i=1;i<N;i++)
    {
                    if(max<a[i])
                    max=a[i];
    }
    cout<<"max="<<max<<endl;
    cout<<"min="<<min<<endl;
    unsigned endtime=clock();
    cout<<"CPU time:"
        <<(double)(endtime-starttime)/CLK_TCK
        <<"sec"<<endl;
    system("pause");
    return 0;
}

B9833177 提到...

#define N 100
#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;
int main()
{
unsigned starttime=clock();
int a[N];
srand((unsigned)time(NULL));
int i=rand();
cout<<i<<endl;
for(int x=0;x<100;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x<<"]="<<a[x]<<endl;
}
int min=a[0];
for(i=1;i<N;i++)
{
if(min>a[i])
min=a[i];
}
cout<<"min:"<<min<<endl;
unsigned endtime=clock();
cout<<"CPU time:"
<<(double)(endtime-starttime)/CLK_TCK
<<"sec"<<endl;
system("pause");
return 0;
}

B9833165 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int a[N];
    srand((unsigned)time(NULL));
    for(int x=0;x<100;x++)
    {
            a[x]=rand()%50+41;
            cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if(min>a[i])
           min=a[i];
    }
    cout<<"最小值為:"<<min<<endl;
    system("pause");
    return 0;
}

b9833127 提到...

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a [100];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for(int x=0;x<100;x++)
    {
    a[x]=rand()%50+41;
    cout<<"a["<<x+1<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for(int i=0;i<100;i++)
    {
        if(min>a[i])
        min=a[i];
    }
    cout<<"min="<<min<<endl;   
    system("pause");
    return 0;
}

b9833176 提到...

#define N 100
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std ;
int main ()
{
     int a[100];
     srand ((unsigned)time(NULL));
     for (int x=0 ; x<100 ;x++)
     {
         a[x]=rand()% 50+41 ;
         cout<<"a["<<x+1<<"]="<<a[x]<<endl;
     }
     int min=a[0];
     for (int i=0;i<N;i++)
     {
         if (min>a[i])
         min=a[i];
     }
     cout<<"min="<<min<<"\n";
          system ("pause");
         return 0 ;
     }

b9833136 提到...
網誌管理員已經移除這則留言。
B9833126 提到...

#define N 100
#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;
int main()
{
    unsigned starttime=clock();
    int a[N];
    srand((unsigned)time(NULL));
    int i=rand();
    cout<<i<<endl;
    for (int x=0;x<N;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x<<"]="<<a[x]<<endl;
    }
    int min=a[0];
    for(i=1;i<N;i++)
    {
                   if(min>a[i])
                   min=a[i];
    }
    int max=a[0];
    for(i=1;i<N;i++)
    {
                    if(max<a[i])
                    max=a[i];
    }
    cout<<"max="<<max<<endl;
    cout<<"min="<<min<<endl;
    unsigned endtime=clock();
    cout<<"CPU time:"
        <<(double)(endtime-starttime)/CLK_TCK
        <<"sec"<<endl;
    system("pause");
    return 0;
}

B9833143 提到...

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
   int a[100];
    srand((unsigned)time(NULL));
    int i=rand();
    for(int x=0;x<100; x++)
    {
     a[x]=rand()%50+41;
     cout<<"a["<<x<<"]="<<a[x]<<endl;
}
int min=a[0];
for(i=1;i<100;i++)
{
   if(min>a[i])
      min=a[i];                 
}
cout<<"min="<<min<<endl;
system("pause");
return 0;
}

B9633122 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int a[N];
    srand((unsigned)time(0));
    for (int x=0;x<100;x++)
    {
        a[x]=rand()%50+41;
        cout<<"a["<<x+1<<"] = "<<a[x]<<"\n";
    }
    int min=a[0];
    for (int i=1;i<N;i++)
    {
        if (min>a[i])
           min=a[i];
    }
    cout<<"最小值為"<<min<<"\n";
    system("pause");
    return 0;
}

b9533031 提到...

#define N 100
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a[N];
srand ((unsigned)time(NULL));
for(int x=0;x<N;x++)
{
a[x]=rand()%50+41;
cout<<"a["<<x+1<<"]="<<a[x]<<endl;
}
int min=a[0];
for( int i=1;i<N;i++)           
{
    if(min>a[i])
    min=a[i];
}
cout<<"min="<<min<<"\n";
    system("pause");
    return 0;
}

Related Posts Plugin for WordPress, Blogger...

熱門文章