Answer:
i dont get what you are trying to ask
Explanation:
Answer:
a
Explanation:
intercultural communication is about enganging oneself within a social enviroment of foreign culture and different races among it.
Answer:
hi im writing this to get points but i hope your doing good in school and pass you got this school is almost over good job bye
Explanation:
Answer:
C++.
Explanation:
#include <iostream.h>
void main(int argc,char* arg[]) {
// Arrays
int x[100];
int y[50];
int z[50];
////////////////////////////////////////////////////////////////////////////
int count = 0;
for (int i = 0; i < 100; i+=2) {
z[count] = x[i] * y[count];
count++;
}
for (int i =0; i < 5; i++) {
cout<<z[i]<<endl;
}
getche();
}