Commit 63a61ede by tonis2

uuenda kommentaare

parent d44797a4
No preview for this file type
/**
* File: automaat.c
* Author: Tõnis Anton
* Created: 11.09.2020
* Last edit: 11.09.2020
*
* Description: Panga automaat, mis vahetab kasutaja 100 raha ühikut väiksemateks ühikuteks.
*
*/
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
...@@ -111,6 +121,7 @@ int main(void) ...@@ -111,6 +121,7 @@ int main(void)
} }
} }
//Kui pangas on kupüüre vales koguses ja kasutajale ei saa täpselt 100-t tagasi anda siis jätame protsessi katki.
if (wrong_amount_of_bills) if (wrong_amount_of_bills)
{ {
printf("Masinal pole piisavalt vajatud kupüüre, et summat vahetada \n"); printf("Masinal pole piisavalt vajatud kupüüre, et summat vahetada \n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment