import java.util.*;
import java.text.*;

 

class testDate{
 public static void main(String[] a){

  SimpleDateFormat formatter = new SimpleDateFormat ( "yyyy.MM.dd HH:mm:ss", Locale.KOREA );
  Date currentTime = new Date ( );
  String dTime = formatter.format ( currentTime );
  System.out.println ( dTime );


 }
}

cmd창에서
set path=설치경로

알면 다행, 모르면 짜증 ㅠㅠ

class exIf{

 public static void main(String a[]){

  int x=1;
  int y=12;
  int z=10;

  int min=x;
  int max=x;

  if (y<z){
  
   max=z;
   
   if(y<min){
    min=y;
   }
   } else {

   max=y;

   if(z<min){
    min=z;
   }
  }

  System.out.println("min : " + min + " max : "+ max);
 }
}


if문을 2개이하로 쓰는 방법은 없을까? 


+ Recent posts