Ask your own question, for FREE!
Computer Science 20 Online
OpenStudy (hba):

Can anyone convert the following code from C++ to C# or JAVA?

OpenStudy (hba):

void print( int a[], int iLeft, int iRight) { cout << "{"; for (int i = iLeft; i <= iRight; ++i) { cout << a[i]; if (i < iRight) cout << ","; } cout << "}" << endl; }

OpenStudy (anonymous):

For Java cout -> System.out.print << -> + endl -> use System.out.println

OpenStudy (ikram002p):

i oly know java :o and c++

OpenStudy (kc_kennylau):

void print( int[] a, int iLeft, int iRight) { System.out.print("{"); for (int i = iLeft; i <= iRight; i++) { System.out.print(a[i]); if (i < iRight) System.out.print(","); } System.out.println("}"); }

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!