View Single Post
  #1 (permalink)  
Old 12-14-2007, 05:42 AM
satya5321 satya5321 is offline
Newbie
 
Join Date: Dec 2007
Posts: 8
Rep Power: 0
satya5321 is on a distinguished road
Default Program to print Pyramid

Code:
/*
 * Created on Nov 6, 2007
 */

/**
 * @author books4java.blogspot dot com
 *
 * Program to print Pyramid
 * 			     
 */



	public class Pyramid {
	static private int x=8;
	static int z;
	static{
	z=2;
	}

	static class B2{
	static int y=9;
	void goB2(){
	System.out.println(x+" "+y+" "+z);
	}
	}
	}

Last edited by v0id; 12-14-2007 at 08:28 AM. Reason: Remember the code-tags!
Reply With Quote

Sponsored Links