While Loop

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public€class€table{ €€

public€static€void€main(String[]€args){
int€n€=€2;
int€i€=€1;
System.out.println("The€table€of€"+n+"€=€");
while(i<=10){
int€t€=€n€*€i;
System.out.println(t);
i++;
}
}
}

You might also like