Computer Science, asked by SujayKumar7202, 8 months ago

Complete the following code to accept 10 integers int a[]=new int[10] Scanner sc=new Scanner(System.in); int k; for(k=0;______;_____) { a[k]=___________________________;}

Answers

Answered by arman041998
0

Answer:

for(k=0;k<10;k++)

{a[k]=k;}

Similar questions