Answer:
I need the know what "the following" are! Then I can answer!
Explanation:
The last step to writing a business document is make sure your business document appears professionally
The five steps are
1. Identify the audience
2. Identify the dictums ya purpose and keep it focused
3.organize your writing
4.re read your business document before sending
5. Make sure your business document appears professional
-hope this helps
Answer:
public class Main
{
public static void main(String[] args) {
PrintFeetInchShort(5, 8);
}
public static void PrintFeetInchShort(int numFeet, int numInches) {
System.out.println(numFeet + "'" + " " + numInches + "\"");
}
}
Explanation:
Create a function called PrintFeetInchShort that takes two parameters, numFeet, and numInches
Print the given values in required format. Use <em>System.out.println </em>to print the values, ends with a new line.
Inside the main, call the function with two integers as seen in the example