4.13 LAB: Count input length without spaces, periods, exclamation points, or commas Given a line of text as input, output the number of characters excluding spaces, periods, exclamation points, or commas. Ex: If the input is: Listen, Mr. Jones, calm down. the output is: 21 Note: Account for all characters that aren't spaces, periods, exclamation points, or commas (Ex: " r ", "2", "?"). 441028,3104204 quaxiy? \begin{tabular}{l|l} LAB & 4.13.1: LAB: Count input length without spaces, periods, exclamation points, or commas \end{tabular} 0/10 LabProgram.java Load default template... Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box. Enter program input (optional) If your code requires input values, provide them here. Input (from above) ? Output (shown below) Program output displayed here
Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box.
Write a program that takes in an integer in the range 11-100 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical. End with a newline. Ex: If the input is: 93 the output is: 93?92?91?90?89?8 Ex: If the input is: 11 the output is: 11 Ex: If the input is: 9 or any number not between 11 and 100 (inclusive), the output is: Input must be 11?100 For coding simplicity, follow each output number by a space, even the last one. Use a while loop. Compare the digits; do not write a large if-else for all possible same-digit numbers (11,22,33,….,99), as that approach would be cumbersome for larger ranges. 441028.3104204.49224y7 Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box.