Recent content by twojuantwo

  1. T

    Closed Direct Link for Java Tutorial for Beginners

    Bili ka ng libro para maka tipid ka. Kahit hindi ka naka Internet pag may libro ka at meron kang pc or laptop na meron ng naka-install na Java Development Kit at IDE (Eclipse or Netbeans), matatapos mo ang whole java course na hindi mag re-rent ng pc sa cafe.
  2. T

    Closed Java Banking System

    ATM Class - with a method - wí†hdráw(Account account, double amount) BankAccount Class - balance, accountNumber - merong set/get methods - merong debit method - merong deposit method User Class - name, pin, BankAccount Kung ako sa iyo, yan ang magiging initial na mga classes ko.....kung OOP...
  3. T

    Closed Paypal api payment gateway code for website

    Gawin mo Wordpress yung website mo. Tapos i-install mo yung Paypal plugin. Tapos configure mo na yung Paypal with your credentials (log in, password and authentication key...just follow the instruction). ...yun, tapos.... hindi mo na kailangan mag code pa.
  4. T

    Closed Pa help po sa String problem nato

    public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.print("Input: "); String myString = scan.nextLine().replaceAll("[AEIOUaeiou]", "*"); System.out.format("Output: %s: ", myString); }
  5. T

    Closed Pahelp about loops java

    **code na walang error checking** System.out.println("Enter integer numbers only. Type 0 to stop."); Scanner scan = new Scanner(System.in); int input = 1; int counter = 0; int total = 0; while(input != 0) { input = scan.nextInt()...
  6. T

    Closed Data structure

    puwede yan. simple lang yan. Java GENERICS pa lang ay madami ka na magagawa. Nandyan yung COLLECTION Class. Iterable......Collection.....then List, Set, Queue etc. na puwede mo paglaruan sa program. Then, magagamit mo ibat ibang methods. Puwede mo gawin kunyari simple bookstore system.
  7. T

    Closed Election Management System

    madali lang yan...nakapag design na ako ng system na yan. console output siya...object-oriented. noong makita ng professor namin tuwang tuwa. Tapos sabi niya puwede ko daw ba gawin sa GUI...sabi ko tinatamad na ako. mababa tuloy grades na binigay sa akin... hehehe
  8. T

    Closed IT EXPERT I HAVE A CHALLENGE FOR YOU

    heto, Rock Paper Scissor... kahawig ng gusto mo. Assignment ko noong last year. Baguhin mo na lang para sa requirements mo. /** * Author: TwoJuanTwo * */ import java.util.Random; import java.util.Scanner; public class App { public static int MAX_PLAYERS = 2; private int[]...
  9. T

    Closed Java Programming Expert I need You

    yan yung ginawa ko para sa assignment namin... kamukha ng gusto mo. baguhin mo na lang para sa requirements mo.
  10. T

    Closed Java Programming Expert I need You

    /** * Author: TwoJuanTwo * */ import java.util.Random; import java.util.Scanner; public class App { public static int MAX_PLAYERS = 2; private int[] playerHands; public static int MAX_CHOICES = 3; private int[] scores; static Scanner input; static String[] result...
Back
Top