Computer Science, asked by saurav234, 1 year ago

WAP to take 100 integers as input and print the input simultaneously

Answers

Answered by Anonymous
1
class Integer
{
public void show()                                     here n is for taking 100 integer 
{                                                                   values 
int n[ ]=new int[100],i;
for(i=0;i<100;i++)
System.out.println(i);
}
}

Similar questions