Below is the program i wrote.

class Value
{
public static void main(String [] args)
{
float v=2.234567f;
System.out.println("the valu of v="+v);
}
}