0
An array which gives out put like this 17171717
4 Réponses
0
In which language?
0
java
0
int[] arr = {1, 7};
for (int i = 0; i < 4; i++)
{
System.out.printf(arr[0]);
System.out.printf(arr[1]);
}
Sorry, I'm not very familiar with Java.
0
thanks bro