wap to print the pattern 777 88??
Answers
Answered by
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