This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ComputerAccesories { | |
public static void main(String[] args) { | |
String computerProcessor = "quad core Q6600 Intel processor with frequency 2.4GHz, "; | |
String memory = "four gigs of RAM, "; | |
String fans = "Noctua 120mm fans, "; | |
String videoCard = "Radeon HD 4870 video card, "; | |
String powerSupply = "450W power supply, "; | |
String motherBoard = "p5k Asus motherboard, "; | |
String hardDiscDrive = "512GB HDD, "; | |
System.out.println("Thats what inside of my PC:"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HelloWorldJava { | |
public static void main(String[] args) { | |
System.out.println("Hello World Java"); | |
} | |
} |
NewerOlder