/*
 * Main.java
 *
 * Created on March 19, 2008, 3:15 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package javaapplication72;

/**
 *
 * @author student
 */
public class Main {
    
    /** Creates a new instance of Main */
    public Main() {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) { 
   double x=52.427;
   double b=Math.floor(x*10)%10;
   System.out.println("b="+b);
        
        
    
        // TODO code application logic here
    }
    
}
