Computer Science, asked by mondalsharanya451, 19 days ago

class test public static void main(string args ) int i for(i=0 i 5 i++) system.out.println(i-i*i)​

Answers

Answered by hafsakamal47
1

Answer:

I=0; 0

I=1, 0

I=2, -2

I=3, -6

I=4, -12

I=5, -20

Explanation:

if it's (i- (I*I)) otherwise all values would be zero.

Similar questions