View Single Post
  #3 (permalink)  
Old 05-06-2008, 02:08 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,104
hardwired is on a distinguished road
Code:
import javax.swing.JOptionPane; public class Ex6Rx { public static void main(String args[]) { String msg; msg = String.format("%11sN%9s10*N%5s100*N%3s1000*N\n", "", "", "", ""); for (int i = 1; i <= 5; i++) { msg += String.format("%12d%12d%12d%12d\n", i, i*10, i*100, i*1000); } JOptionPane.showMessageDialog(null, msg, "", -1); } }
Reply With Quote