Introduction: JAVA is a
programming language. This is the simple program in JAVA that application help
how to create a programmed in Java. Java can create all kinds of applications
that you could create using any conventional programming language. JAVA is an
excellent teaching language and an excellent choice with which to learn
programming. The language is small so it's easy to become fluent. The language
is interpreted so the compile-run-link cycle is much shorter. The runtime
environment provides automatic memory allocation and garbage collection so there
less for the programmer to think about. Java is object-oriented unlike Basic so
the beginning programmer does not have to unlearn bad programming habits when
moving into real world projects.
JAVA is a high-level third generation
programming language. You can use Java to write computer applications that
crunch numbers, process words, play games, store data or do any of the thousands
of other things computer software can do.
Example: Integer to string
Code :
class manish
{
public static void main(String[] args)
{
int a = 78;
String b = Integer.toString(a);}
System.out.println(b);
}
}
Output:

Summary: This is the simple program in JAVA. this program help for beginners
that hoe to create a simple program in JAVA. In this example show how to convert
integer to string.