Question
Assignment purpose: To compile, build, and execute an interactive program using functions from stdio.h (printf and scanf), math in C, conditions, a while loop, and
Assignment purpose: To compile, build, and execute an interactive program using functions from stdio.h (printf and scanf), math in C, conditions, a while loop, and programmer defined functions. #define _CRT_SECURE_NO_WARNINGS //for Visual studio compiler #include
Additional information: You can assume the user will enter an integer for the number selection One algorithm will be submitted (lastname_proram4alg.pdf) One source code file (unformatted text) will be submitted The file name must match the assignment (lastname_program4.c) The code should be tested and run on an IDE before it is uploaded onto Canvas The code must be submitted on time in order to receive credit, do not wait until the last minute Late submissions, or email submissions will not be accepted for grading All programming assignments are individual work, sharing code is considered cheating Here are some tips and tricks that will help you with this assignment and make the experience more enjoyable. Do not try to write out all the code at once. For each new line of code written (2-3 lines), build it to see if it compiles successfully. After any successful build, run the executable to see what happens so you know what to do next! o If the program performs as expected, you can then move onto the next step o If you try to write everything at once and build it successfully to find out it does not work properly, you will get frustrated trying to find out the logical error in your code! Logical errors are the hardest to fix and identify in a program! Start the assignment early! Do not wait last minute (the day of) to begin the assignment. Sample Output: Welcome to the Bank of COP 2220 It is a pleasure to manage your checking and savings accounts The balance in your checking account is $276.20 The balance in your savings account is $124.61 ************************************** (1) to DEPOSIT to CHECKING ACCOUNT (2) to WITHDRAW from CHECKING ACCOUNT (3) to DEPOSIT to SAVINGS ACCOUNT (4) to WITHDRAW from SAVINGS ACCOUNT (5) to display CHECKING ACCOUNT BALANCE (6) to display SAVINGS ACCOUNT BALANCE (-1) to QUIT Select an option :1 You selected 1 The balance in your checking account is $276.20 enter the amount to add to your checking account:20.00 The balance in your checking account is $296.20
************************************** (1) to DEPOSIT to CHECKING ACCOUNT (2) to WITHDRAW from CHECKING ACCOUNT (3) to DEPOSIT to SAVINGS ACCOUNT (4) to WITHDRAW from SAVINGS ACCOUNT (5) to display CHECKING ACCOUNT BALANCE (6) to display SAVINGS ACCOUNT BALANCE (-1) to QUIT Select an option :2 You selected 2 The balance in your checking account is $276.20 enter the amount to subtract from your checking account:300.00 You do not have enough money in your checking account to cover your request! The balance in your checking account is $276.20 ************************************** (1) to DEPOSIT to CHECKING ACCOUNT (2) to WITHDRAW from CHECKING ACCOUNT (3) to DEPOSIT to SAVINGS ACCOUNT (4) to WITHDRAW from SAVINGS ACCOUNT (5) to display CHECKING ACCOUNT BALANCE (6) to display SAVINGS ACCOUNT BALANCE (-1) to QUIT Select an option :3 You selected 3 The balance in your savings account is $124.61 enter the amount to add to your checking account:10.00 The balance in your savings account is $134.61 ************************************** (1) to DEPOSIT to CHECKING ACCOUNT (2) to WITHDRAW from CHECKING ACCOUNT (3) to DEPOSIT to SAVINGS ACCOUNT (4) to WITHDRAW from SAVINGS ACCOUNT (5) to display CHECKING ACCOUNT BALANCE (6) to display SAVINGS ACCOUNT BALANCE (-1) to QUIT Select an option :4 You selected 4 The balance in your checking account is $124.61 enter the amount to subtract from your savings account:60.00 The balance in your checking account is $64.61
************************************** (1) to DEPOSIT to CHECKING ACCOUNT (2) to WITHDRAW from CHECKING ACCOUNT (3) to DEPOSIT to SAVINGS ACCOUNT (4) to WITHDRAW from SAVINGS ACCOUNT (5) to display CHECKING ACCOUNT BALANCE (6) to display SAVINGS ACCOUNT BALANCE (-1) to QUIT Select an option :5 You selected 5 The balance in your checking account is $276.20 ************************************** (1) to DEPOSIT to CHECKING ACCOUNT (2) to WITHDRAW from CHECKING ACCOUNT (3) to DEPOSIT to SAVINGS ACCOUNT (4) to WITHDRAW from SAVINGS ACCOUNT (5) to display CHECKING ACCOUNT BALANCE (6) to display SAVINGS ACCOUNT BALANCE (-1) to QUIT Select an option :6 You selected 6 The balance in your savings account is $124.61 ************************************** (1) to DEPOSIT to CHECKING ACCOUNT (2) to WITHDRAW from CHECKING ACCOUNT (3) to DEPOSIT to SAVINGS ACCOUNT (4) to WITHDRAW from SAVINGS ACCOUNT (5) to display CHECKING ACCOUNT BALANCE (6) to display SAVINGS ACCOUNT BALANCE (-1) to QUIT Select an option :-1 You selected -1 Thank you and have a great day!
Do in C code
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started