Java Software Solutions > PP1.5 > Solution

Problem:

Write an application that prints a list of four or five web sites
that you enjoy. Print both the site name and the URL.

Output:

Not available.

Solution:

class WebSites
{
   //-----------------------------------------------------------------
   //  Prints some web site URLs.
   //-----------------------------------------------------------------
   public static void main (String[] args)
   {
      System.out.println ("Adsense:");
      System.out.println ("http://adsense.com");
      System.out.println ();
      System.out.println ("Wikipedia:");
      System.out.println ("http://wikipedia.org");
      System.out.println ();
      System.out.println ("Technorati:");
      System.out.println ("http://technorati.com");
      System.out.println ();
      System.out.println ("Joel on Software (Joel Spolsky's Blog):");
      System.out.println ("http://www.joelonsoftware.com");
      System.out.println ();
      System.out.println ("College Humor:");
      System.out.println ("http://www.collegehumor.com");
   }
}


No comments :

Post a Comment

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact