Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cgikanga

    How to make executable programs from these questions

    1.Write a Rectangle class that will include: a. Instance variables for width and height(at a minimum) b. A constructor that will initialize the rectangle to a certain width and height c. Instance methods to i. Return the width ii.Return the height iii.Return the perimeter iv.Return the lengh...
  2. cgikanga

    How to make the tv program run

    class TV{ private boolean power; private int channel; private int volume; TV() { this.power=false; this.channel=2; this.volume=0; } boolean getPower() { return this.power; } int getChannel() { return this.channel; } int getVolume() { return this.volume; } void...

Part and Inventory Search

Back
Top