Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. Site Bugs / Suggestions
  4. oracle java

oracle java

Scheduled Pinned Locked Moved Site Bugs / Suggestions
javaoracletools
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    MUDAAM CHANDRIKA
    wrote on last edited by
    #1

    /* IMPORTANT: Multiple classes and nested static classes are supported */

    /*
    * uncomment this if you want to read input.
    //imports for BufferedReader
    import java.io.BufferedReader;
    import java.io.InputStreamReader;

    //import for Scanner and other utility classes
    import java.util.*;
    */

    // Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail

    class TestClass {
    public static void main(String args[] ) throws Exception {
    /* Sample code to perform I/O:
    * Use either of these methods for input

        //BufferedReader
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String name = br.readLine();                // Reading input from STDIN
        System.out.println("Hi, " + name + ".");    // Writing output to STDOUT
    
        //Scanner
        Scanner s = new Scanner(System.in);
        String name = s.nextLine();                 // Reading input from STDIN
        System.out.println("Hi, " + name + ".");    // Writing output to STDOUT
    
        \*/
    
        // Write your code here
    
    }
    

    }

    L 1 Reply Last reply
    0
    • M MUDAAM CHANDRIKA

      /* IMPORTANT: Multiple classes and nested static classes are supported */

      /*
      * uncomment this if you want to read input.
      //imports for BufferedReader
      import java.io.BufferedReader;
      import java.io.InputStreamReader;

      //import for Scanner and other utility classes
      import java.util.*;
      */

      // Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail

      class TestClass {
      public static void main(String args[] ) throws Exception {
      /* Sample code to perform I/O:
      * Use either of these methods for input

          //BufferedReader
          BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
          String name = br.readLine();                // Reading input from STDIN
          System.out.println("Hi, " + name + ".");    // Writing output to STDOUT
      
          //Scanner
          Scanner s = new Scanner(System.in);
          String name = s.nextLine();                 // Reading input from STDIN
          System.out.println("Hi, " + name + ".");    // Writing output to STDOUT
      
          \*/
      
          // Write your code here
      
      }
      

      }

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      This forum is for problems with the CodeProject site. Please try https://www.codeproject.com/Questions/ask.aspx[^]. But you will need to add considerably more detail to your question. And if you are expecting someone to write your code for you, I am afraid that will not happen.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups