輸入兩個陣列中要存放的元素個數及元素值(不超過50個),判斷這兩個陣列中是否有相同的數字。
在下面的程式基礎上完成:
#include
using namespace std;
bool existthesame(int *a,int n1,int *b,int n2); //n1個資料的a陣列中和n2個資料的b陣列中是否有相同元素
int main()
bool existthesame(int *a,int n1,int *b,int n2)
共有兩組數。每組數包括:這組數的個數n,以及這n個數字。(n<=50)
當兩組數中有相同數字時,輸出yes,否則,輸出no
6 1 7 8 10 12 174 2 7 12 25
yes**
#includeusing namespace std;
bool existthesame(int *a,int n1,int *b,int n2); //n1個資料的a陣列中和n2個資料的b陣列中是否有相同元素
int main()
bool existthesame(int *a,int n1,int *b,int n2)
{ int i,j;
for (i=0; i執行結果:
學習心得:
好好學習 天天向上
第十六周 OJ平台 有相同數字?
輸入兩個陣列中要存放的元素個數及元素值 不超過50個 判斷這兩個陣列中是否有相同的數字。在下面的程式基礎上完成 include using namespace std bool existthesame int a,int n1,int b,int n2 n1個資料的a陣列中和n2個資料的b陣列中是...
第十六周OJ平台Problem A 逆序輸出陣列
下面的程式,採用指標訪問的方式,從鍵盤給陣列a n 輸入n個資料 n小於100 然後對元素值按逆序存放後輸出。請補充完整下面的程式。include using namespace std const int n 100 int main int a n p,q cin n for p a p p 2...
第十六周 OJ平台 指標引出奇數因子
編寫函式 int fun int x,int pp 其功能是,求出x的所有奇數因子,並按照從小到大的順序放在pp指向的記憶體中,函式返回值為這些整數的個數。若x的值為30,陣列中的數為1,3,5,15,函式返回4。用下面的main 函式進行測試 int main int a 50 x,n cin x...