Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Digit to WordsWrite a C program that asks the user for a two-digit number, then prints the English wordfor the number. Your program should loop

Digit to WordsWrite a C program that asks the user for a two-digit number, then prints the English wordfor the number. Your program should loop until the user wants to quit.Example:Enter a two-digit number: 45You entered the number forty-five.Hint: Break the number into two digits. Use one switch statement to print the word for the firstdigit (twenty, thirty, and so forth). Use a second switch statement to print the word for thesecond digit. Dont forget that the numbers between 11 and 19 require special treatment.

i need help how to both enter both digits on the same line

this is my program

#define _CRT_SECURE_NO_WARNINGS #include

int main(void) { int num1; int num2;

printf("<<<<<>>>>>>> "); printf("Enter 2 digits from 00 to 99: "); printf("Enter the first single digit: "); scanf("%d", &num1); printf("Enter the second single digit: "); scanf("%d", &num2)

.....

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_2

Step: 3

blur-text-image_3

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

SQL Server Query Performance Tuning

Authors: Sajal Dam, Grant Fritchey

4th Edition

1430267429, 9781430267423

More Books

Students also viewed these Databases questions

Question

=+ Are there closed-shop requirements or practices?

Answered: 1 week ago