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
0
Answer:
for(k=0;k<10;k++)
{a[k]=k;}
Similar questions