Java
Java
James Gosling
oracle corporation
23 January 1996
The JVM stays right on top of the host operating system and converts the java
source code into ByteCode (machine language), and executes the program.
Compiling a Java program means taking the programmer-readable text in your program
file (also called source code) and converting it to bytecodes, which are platform-
independent instructions for the Java VM.
Byte Code can be defined as an intermediate code generated by the compiler after
the compilation of source code(JAVA Program). This intermediate code makes Java a
platform-independent language
for(int i=0;i<str.length();i++){
if(c[i]>='a' && c[i]<='z'){
c[i]-=32;
}else{
c[i]+=32;
}
}
String s = new String(c);
s =s.replace('@',' ');
System.out.println(s);
}
}