Kris Patel

Greenhorn
+ Follow
since Jan 22, 2016
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Kris Patel

Don't know about database and table, just a beginner so please help with this'
8 years ago
Create main class ClockTestthat instantiate and invoke methods from the class Clock
5.Design a class called Clockthat includes the following elements:
6.Three attributesrelated to the hours, minutes and seconds
7.Accessormethods
8.one mutatormethod that modifies all variables
9.Methods to incrementeach attribute with 1
10.Overloadingmethods to increment the attributes with a value entered by the user
11.One default constructorthat sets the clock to 0 hours, 0 minutes and 0 seconds

12.An overloading constructorthat sets the clock to a given time (hr, min, sec)
8 years ago
Can anybody help in this?
Prompt the user for an integer which will define the number of groups in your table
Produce an ASCII table from 0 to 127
Your table will be organized into groups of three little columns displaying the same value as a character, in hexadecimaland in decimalvalue. So each number in the table is displayed three times
Each of the groups of little columns will be 8 characters wide and neatly aligned (see sample output below). The alignment has to be neat for values less than 6. What is shown is just an example.
Leave 4 blank spaces between groups.
When you have printed the number of groups defined by the user input start a new line and continue.
When you reach 127, stop printing regardless of which group you are in and print one extra newline character.
Your solution must employ a loop that goes from 0 to 127. Within the loop there must be a second control structure to determine when to start a new line when you have enough groups printed.
Include documentation readable by the javadoc utility suitable to a program of this size.
our documentation should include a general description of what this program does
8 years ago