Á¤¼ºÈÆ
    Mini Project (ATM ¸¸µé±â) (¸ð¹ü ´ä¾È)



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
 
void mainMenu();
void checkBalance(int balance);
int moneyDeposit(int balance);
int moneyWithdraw(int balance);
void menuExit();
void errorMessage();
 
int main() {
    int option = 0;
    int balance = 10000;
    int choose = 0;
 
    bool again = true;
 
    while (again) {
        mainMenu();
 
        scanf("%d"&option);
 
        switch (option) {
        case 1:
            checkBalance(balance);
            break;
        case 2:
            balance = moneyDeposit(balance);
            break;
        case 3:
            balance = moneyWithdraw(balance);
            break;
 
        case 4:
            menuExit();
            return 0;
 
        default:
            errorMessage();
            break;
        }
 
        system("CLS");
        if (choose == 2) {
            again = false;
            menuExit();
 
        }
 
    }
    return 0;
}
 
void mainMenu() {
    printf("**********Welcome to Äܼ­Æ® ATM***********\n");
    printf("****Çϳª¸¦ ¼±ÅÃÇϽÿÀ****\n");
    printf("<1>  ÀÜ°í È®ÀÎ\n");
    printf("<2>  ÀÔ±Ý\n");
    printf("<3>  ÀÎÃâ\n");
    printf("<4>  Á¾·á\n");
 
}
 
void checkBalance(int balance) {
    printf("****ÀÜ°í´Â %dÀÔ´Ï´Ù.\n\n", balance);
    printf("¾Æ¹«Å°³ª ´©¸£¼¼¿ä\n");
    getch();
 
}
 
int moneyDeposit(int balance) {
    int deposit;
    printf("****ÀԱݠ±Ý¾×À» ÀÔ·ÂÇϽÿÀ\n");
    scanf("%d"&deposit);
 
    balance += deposit;
    printf("\n»õ·Î¿î ÀÜ°í´Â %dÀÔ´Ï´Ù.\n\n", balance);
    printf("¾Æ¹«Å°³ª ´©¸£¼¼¿ä\n");
    getch();
    return balance;
 
}
 
int moneyWithdraw(int balance) {
    int withdraw;
    bool back = true;
 
    while (back) {
        printf("Ãâ±Ý ±Ý¾×À» ÀÔ·ÂÇϽÿÀ: \n");
        scanf("%d"&withdraw);
 
 
        if (withdraw < balance) {
            back = false;
            balance -= withdraw;
            printf("\n»õ·Î¿î ÀÜ°í´Â %dÀÔ´Ï´Ù.\n\n", balance);
        }
 
        else {
        }
    }
    getch();
    printf("¾Æ¹«Å°³ª ´©¸£¼¼¿ä\n");
    return balance;
}
 
void menuExit() {
}
 
void errorMessage() {
}
cs

  µî·ÏÀÏ : 2022-04-17 [03:36] Á¶È¸ : 765 ´Ù¿î : 0   
 
¡â ÀÌÀü±ÛMini Project (ATM ¸¸µé±â)
¡ä ´ÙÀ½±ÛÃß°¡ µµÀü ¹®Á¦ 1
ÇÁ·Î±×·¡¹Ö¾ð¾î ½Ç½À°Ô½ÃÆÇ
¹øÈ£ ¨Ï Á¦ ¸ñ Á¶È¸ µî·ÏÀÏ
Mini Project (¾îµåº¥Ã³ °ÔÀÓ ¸¸µé±â) Ãß°¡ ±¸Çö // ¡Ú¡Ú¡Ú ±â¸»°úÁ¦ °ÔÀÓ±¸Çö ½Ã Âü°í
½Ç½À ¸ñÂ÷
181 (8Àå) ÇÔ¼ö 680 02-22
180 ¦¦❶ Mini Project (ATM ¸¸µé±â) 887 04-17
179    ¦¦❷ Mini Project (ATM ¸¸µé±â) (¸ð¹ü ´ä¾È) 765 04-17
178 ¦¦❶ ¨ÕÃß°¡ µµÀü ¹®Á¦ 1 167 05-10
177    ¦¦❷ Ãß°¡ µµÀü ¹®Á¦ 1 (¸ð¹ü ´ä¾È) 192 05-10
176 ¦¦❶ lfactorial.c (±³Àç) 1153 02-22
175 ¦¦❶ lstatic.c (±³Àç) 969 02-22
174 ¦¦❶ lprime_sum.c (±³Àç) 1077 02-22
173 ¦¦❶ llocal_shadow.c (±³Àç) 1005 02-22
172 ¦¦❶ lglobal_var.c (±³Àç) 1103 02-22
171 ¦¦❶ llocal_var.c (±³Àç) 1018 02-22
170 ¦¦❶ lcheck_prime.c (±³Àç) 1116 02-22
169 ¦¦❶ ltemp.c (±³Àç) 1224 02-22
168 ¦¦❶ lprototype.c (±³Àç) 1041 02-22
167 ¦¦❶ lpower.c (±³Àç) 1073 02-22
166 ¦¦❶ lget_max.c (±³Àç) 1107 02-22
165 ¦¦❶ lfunc1.c (±³Àç) 1075 02-22
164 ¦¦❶ lprint_name2.c (±³Àç) 1175 02-22
163 ¦¦❶ lprint_name1.c (±³Àç) 1175 02-22
162 (7Àå) ¹è¿­ 881 02-22

[1][2][3][4][5][6][7][8][9][10]-[Next][15]