用C產生100個41~90的亂數
並找出min!
Hint: srand(), rand(), 陣列
herrDeng網內搜尋
自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
教育部為提昇全民資安素養與電腦防護能力,本部於101年9月5日至11月5日舉辦「全民資安素養自我評量」活動,請在活動期間內踴躍上網檢測資訊安全素養認知程度,並有機會參與抽獎,詳情請參閱活動網站(網址: https://isafe.moe.edu.tw/event
-
先說明一下這是後知後覺的解答,所謂後知就是股票價格已知存在陣列(清單),當然就要用迴圈練習,雙迴圈暴力解需時O(n**2),當然不用,採python單一迴圈解答「最佳股票的買賣時機#LeetCode 121 Best Time to Buy and Sell Stock」,解...
-
url="https://www.twse.com.tw/exchangeReport/STOCK_DAY?response=json&date=20220330&stockNo=2330"
-
你會用C的算子sizeof?
-
Python C++使用字串find迴圈速解Leetcode 2490 Circular Sentence C++ & Python都有字串的find,用法都類似 split=s.find(' ', split+1)能找到s從index=split+1開...
-
Python CPP heap priority queue速解L eetcode 2530. Maximal Score After Applying K Operations heap/priority queue是重要的資料結構,無論是C++的std::priority_q...
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;
}
張貼留言