//Procedure irisan
void irisan(int A[], int B[],int jum){
int i=1;
cout<<"Array yang beririsan :";
while (i<=jum)
{
int j=1;
while ((A[i] != B[j]) && (j <= jum))
{
j++;
}
if (A[i]==B[j])
{
cout<<" "<
}
i++;
}
}
Minggu, 17 Januari 2010
Procedure Irisan di C++
Minggu, Januari 17, 2010
Galiarta
No comments
0 comments:
Posting Komentar