Search:

Type: Posts; User: pushpendra.saraswat@gmail

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    2,080

    Re: Simple curency convertor

    package examples;

    import java.text.DecimalFormat;
    import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {
    Scanner input = new Scanner (System.in);
    ...
  2. Replies
    12
    Views
    1,989

    Re: If statement help

    public static void main(String [] args){
    Scanner input = new Scanner(System.in);

    System.out.println ("Please tell me your name.");
    String name = input.nextLine();
    System.out.println...
  3. Re: Having a hard time figuring out how to make my code work

    What I feel
    Card is a Class
    and which is having attributes .. point and color
    so create a deck array put all d Card inside this array and shuffle this array...
    use any algorithm ......
  4. Re: help me with my buffered reader please! whats wrong?

    Try this code this will work
    ===============================

    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;


    public class Ship
    {
Results 1 to 4 of 4