Search found 178 matches

Search found 178 matches Page 1 of 18
by lolxot
Sun Jun 15, 2014 7:25 pm
Forum: Competitions
Topic: Wacky Weekend Contest #1
Replies: 7
Views: 5331

Hey, I made Parkour game from scratch using java. The goal is to get a high score by avoiding the obstacles by jumping over them. Because I was pretty busy this weekend and I was only able to put like 5 hours or so into the game(including writing the whole engine) I didn't have time to make a player...
by lolxot
Mon May 05, 2014 6:12 am
Forum: Codenstuff boardroom
Topic: It's been a long time.
Replies: 15
Views: 5514

Though I've never been a really active member(in terms of posting), I still visit the site every day since about 4 years now. Well, things have changed... I started working last september; I'm not coding with VB .Net anymore, but instead with Java and some Web languages. When I have some free time(n...
by lolxot
Sat Oct 12, 2013 12:25 pm
Forum: Misc
Topic: Java - Banking System
Replies: 4
Views: 2941

well I guess this is what you requested Account.java import java.util.Date; public class Account { private int accountNumber; private String accountType; private String accountStatus; private double balance; private Date dateOpened; private int openedBy; private Date lastTransaction; public Account(...
by lolxot
Wed Sep 25, 2013 4:12 pm
Forum: Misc
Topic: Java - Bank Account
Replies: 3
Views: 2723

no problem :)
by lolxot
Wed Sep 25, 2013 5:39 am
Forum: Misc
Topic: Java - Fibonacci Sequence
Replies: 1
Views: 1953

try this import java.util.Scanner; public class FibonacciSequence { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.print("Enter number of elements: "); int count = in.nextInt(); int prevVal = 0, tempVal = 0, nextVal = 1; System.out.print("0 1 ...
by lolxot
Wed Sep 25, 2013 5:17 am
Forum: Misc
Topic: Java - Bank Account
Replies: 3
Views: 2723

this should work import java.util.Scanner; public class BankAccount { public static void main(String[] args) { boolean accountStatusActive = true; double accountBalance = 1000.00; Scanner in = new Scanner(System.in); System.out.print("Please enter the amount that you would like to withdraw. &qu...
by lolxot
Sun Jun 23, 2013 4:54 pm
Forum: Misc
Topic: Java - another assignment
Replies: 4
Views: 2923

Here is the new Student.java code public class Student { private String name; private int age; public Student(String newName, int newAge) { setName(newName); setAge(newAge); } public void setName(String newName) { name = newName; } public String getName(){ return name; } public void setAge(int newAg...
by lolxot
Sun Jun 23, 2013 10:11 am
Forum: Misc
Topic: Java - another assignment
Replies: 4
Views: 2923

Here you go: StudentClient.java public class StudentClient { public static void main( String [] args ) { Student student1 = new Student("Bob", 15); Student student2 = new Student("Jan", 13); System.out.println("Name: " + student1.getName()); System.out.println("Age...
by lolxot
Sat Mar 23, 2013 8:31 pm
Forum: Codenstuff boardroom
Topic: Manga drawing
Replies: 5
Views: 1571

i also think the proportions are not correct
here is an example a good friend drew for me

Image
by lolxot
Mon Jan 14, 2013 5:09 pm
Forum: Codenstuff boardroom
Topic: My Music
Replies: 2
Views: 1065

Hey, my friends told me to make a post about my music :) First I DJ'd at some partys hosted by my best friend. Afterwards I always was highly motivated to create own music and so my interest for making electronic music was born. (As I was a child I played guitar but that was about 7 years ago). Sinc...
Search found 178 matches Page 1 of 18
Go to advanced search