1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#include <stdio.h>
#include <iostream>
#include <iomanip>
using std::cin;
using std::cout;
using std::setw;
const int SIZE=10;
int i=0;
int j=0;
bool test (int, int);//func. prototype
int main()
{
int A[10]={1,4,4,4,5,2,6,7,3,2};
int B[10]={1,4,4,4,5,2,6,7,5,2};
/*bool test(int A, int B);*/
cout<<test(A[10], B[10]);[/b]//how to convert from boolean to char?
static_cast<char>(test(A[10], B[10]));
cin>>i;
return 0;
}
bool test (int i, int j)
{
int A[10];
int B[10];
while (i<10 && j<10){
i++;
j++;
if (A[i]=B[j])
return true;}
//for (int i=1; A[i]!='\0'; i++ ){
// for (int j=1; j=i; j++ ){
// if (A[i]=B[j])
// /*cout<<"true";*/
// return true;
// for (int i=0; i<=10;i++){
// for (int j=0; i=j; j++){
// if (A[i]!=B[j])
// /*cout<<"False";*/
// return false;}}
}
|