Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Input two integers, for the start and end of an ascii code chart. If the two integers are out of order, swap them. If the

Input two integers, for the start and end of an ascii code chart.

If the two integers are out of order, swap them.

If the start integer is less than 32, set it to 32.

If the end integer is greater than 255, set it to 255.

Declare a named constant for the number of characters per line, such as 10

For each number from start to end, inclusive, print out the number followed by a colon (:) followed by the character with that ascii code followed by a space. (Hint: use a typecast.)

Count the number of characters on the line as you print them. If the count is equal to your named constant, set the count back to o and go to the next line.

Sample run, with 10 as the named constant's value:

start? 120

end? 62

62:> 63:? 64:@ 65:A 66:B 67:C 68:D 69:E 70:F 71:G 72:H 73:I 74:J 75:K 76:L 77:M 78:N 79:O 80:P 81:Q 82:R 83:S 84:T 85:U 86:V 87:W 88:X 89:Y 90:Z 91:[ 92:\ 93:] 94:^ 95:_ 96:` 97:a 98:b 99:c 100:d 101:e 102:f 103:g 104:h 105:i 106:j 107:k 108:l 109:m 110:n 111:o 112:p 113:q 114:r 115:s 116:t 117:u 118:v 119:w 120:x

(i'm trying to figure out a method for make making the ascii code chart come out in rows of 10)

(This what i have so far)

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

int i;

int temp = 0;

int Start = 0;

int end = 0;

int nextlines=10;

System.out.println("Start? ");

Start=sc.nextInt();

System.out.println("End? ");

end=sc.nextInt();

if (Start>end){

temp=Start;

Start=end;

end=temp;

}

if (Start<32){

Start=32;

}

if (end>255){

end=255;

}

for (i=Start; i<=end; i++){

System.out.println(i + ": " (char)i);

}

}

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Graph Databases

Authors: Ian Robinson, Jim Webber, Emil Eifrem

1st Edition

1449356265, 978-1449356262

More Books

Students also viewed these Databases questions