would someone be willing to teach me how to code? i dont have skype so it might be hard but im up for it.
Java aint a thing you will learn withing few hours. You need to put ALOT of time and afford into it. Oh, i'm not good at java myself
I don't know java sadly. I've made a game (graphics are crap but gameplay is good) But not sure which type of coding i used. I could give u my game as an example of coding.
what do i download to do all this anyway? i just wanna know because i have this awesome idea for a mod
Im a beginner. import java.util.*; public class Helloworld{ public static void main(String[]Args){ Scanner inputSc = new Scanner (System.in); System.out.println("Please enter a number"); int i = inputSc.nextInt(); System.out.println("Please enter another one "); int b = inputSc.nextInt(); int c = i + b ; System.out.println("The answer is " + c ); } }
You will need the JDK (Java Development Kit) and an IDE (Integrated Development Environment). I recommend Netbeans, which you can get bundled with the JDK here: http://www.oracle.com/technetwork/java/javase/downloads/jdk-7-netbeans-download-432126.html As for learning Java, just try looking through the tutorials provided by Oracle: http://docs.oracle.com/javase/tutorial/java/index.html. I find it's easier to learn going at your own pace, but don't get anxious and skip ahead, that's where you'll lose yourself and think it's harder than it really is. You need to understand the fundamental concepts of object-oriented programming before you try any coding.