Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: LGPL 

public class Main {
    static String HF(float f) {
        return Integer.toHexString(Float.floatToIntBits(f));
    }
}