# 6์ฅ Mini Project ๋ฌธ์ ํ์ด
246p Mini Project)
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
int init = 12;
int computer = 0;
int user = 0;
srand(time(NULL));
do
{
printf("ํ์ฌ ์คํฑ์ ๊ฐ์: %d\n", init);
printf("๋ช ๊ฐ์ ์คํฑ์ ๊ฐ์ ธ๊ฐ์๊ฒ ์ต๋๊น?: ");
scanf_s("%d", &user);
init -= user;
if (init <= 0)
{
printf("์ปดํจํฐ ์น๋ฆฌ");
break;
}
computer = rand() % 4; //0~3 ์ฌ์ด์ ๋์๋ฅผ ๋ง๋๋ ค๋ฉด 4๋ก ๋๋ ์ค์ผ ํจ
printf("**์ปดํจํฐ๋ %d๊ฐ์ ์คํฑ์ ๊ฐ์ ธ๊ฐ์ต๋๋ค.\n\n", computer);
init -= computer;
if (init <= 0)
{
printf("์ฌ์ฉ์ ์น๋ฆฌ");
break;
}
}
while (init > 0);
return 0;
}