자바 의 if 와 else

559 단어 Java
/**
 *   if else       
 * @author chen_zan_yu
 *
 */
public class Kk04 {
	public static void main(String[] args) {
		//      【0.0,4.0】    ,             
		double r=4*Math.random();
		//Math.pow(r,2);  r   
		double area=Math.PI*Math.pow(r, 2);
		double circle=2*Math.PI*r;
		System.out.println("   "+r);
		System.out.println("   "+area);
		System.out.println("   "+circle);
		if(area>=circle) {
			System.out.println("      ");
		}
		else {
			System.out.println("      ");
		}
	}

}

좋은 웹페이지 즐겨찾기