Computer Science, asked by shivika461504, 5 hours ago

Fill in the blanks with the right choice . The following program prints the series given below.
1 5 2 4 3 3 4 2 5 1
class Q3
{
public static void main(String args[])
{
int i; int a= (a) ,b =(b) ;
for(i = 1;i< = 5; (c) ;
{
System.out.print(a+" "); System.out.print(b+" ");
(d) ;
(e) ;
}
}
}

find the value of a, b, c, d, e​

Answers

Answered by sweety96088sweety
0

Answer:

a=15

b=24

c=33

d=42

e=51

Similar questions