Computer Science, asked by bhukamble, 1 year ago

wap to print the pattern 777 88??

Answers

Answered by areeza12
0

Public class First

{

Public static void main (String args[])

{

Int a =7;

Int b=8;

System.out.print("the given sequence is " +a+a+a);

System.out.print(""+b+b);

}

}

Similar questions