用C產生100個41~90的亂數
並找出min!
Hint: srand(), rand(), 陣列
herrDeng網內搜尋
自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
計算你上學期加權平均
-
產生50個元素的陣列並排序
-
借錢500萬,年利18%,每月複利計算,請問連本帶利的金額 5, 10, 15, 20, 25, 30, 35, 40, 45, 50年的金額。並比較公式: A*exp(0.18n) A*(1+0.18/12)^(12*n), n=年數, A=本金 hint: math.h, p...
-
計算你的BMI
-
請輸出如下 * ** *** **** ***** ******
-
請用CPU-Z軟體檢測Cache & Memory 註:快取(L1-L3: SRAM) 第一級快取(L1)–通常存取只需要幾個週期,通常是幾十個KB。 第二級快取(L2)–比L1約有2到10倍較高延遲性,通常是幾百個KB或更多。 第三級快取(L3)(不...
-
11!=?
-
請用 C/C++/java寫一簡易程式
-
金鑰總數159*10^18 億=10^8 兆=10^12 京=10^16 垓=10^20 秭=10^24 穣=10^28 溝=10^32 澗=10^36 正=10^40 載=10^44 極=10^48 恆河沙=10^52 阿僧祇=10^56 那由...
49 則留言:
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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 ;
}
#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 ;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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;
}
#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 ;
}
#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;
}
#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;
}
#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;
}
#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;
}
張貼留言