public class apples {
public static void main(String argc[]) {
for(int i = 0; i <= 50; i++){
if(i % 2 != 0){
System.out.println(i);
}
}
}
}
Chat with our AI personalities
Source code comes from the programmer...
'.java' files contain java source code. One can access these files on windows by using 'notepad'.
The Java compiler translates Java source code to Java byte code.
It is created by the Java compiler, based on the source code (the .java file).
If the software is open source then generally they will provide the code in a separate link. I don't think it is possible to reverse-engineer the code of a program.