For Andrea to format the legend on her chart, she needs to click on the chart to select it. The Chart Tools option appears when a chart is selected. Andrea can build charts easily and successfully using the Chart Tool in Microsoft Excel or any other Spreadsheet programme. Let us assume that Andrea is using Microsoft Excel to create her chart. When she opens Excel and looks at the ribbon band on top of the new spreadsheet, there is an option to create charts. Using this option, she can create as many charts as she needs to
Answer:
import java.util.Scanner;
public class CharTestt { public static void main(String[] args) { System.out.println("Please enter a character "); Scanner input = new Scanner(System.in); char letterStart = input.next().charAt(0); char thenextChar = (char)(letterStart+1); System.out.print(letterStart); System.out.println(thenextChar);
}
}
Explanation:
Import Scanner Class
Prompt user to enter a character
Read and save user's input in a variable char letterStart = input.next().charAt(0);
Knowing that the next character using ASCII is +1, create a new character variable and add 1
print the character entered and the new character all on same line without spaces