[C++] Bingo Game ver.2 * 추가사항 - Bingo Line Result - iBingo > 5 일경우 Break; - 좌,우 대각선 빙고 #include#include using namespace std; int main(){ srand((unsigned int)time(0)); int iNumber[25] = {}; // 1 ~ 25까지 숫자 입력 for (int i = 0; i Programming/ C & C++ 2018.02.20
[C++] BaseBall Game 요즘 C++를 사용해야할 일이있어 새로이 공부하는 생각으로 좋은 강의를 찾아서 팔로업하고있다. #include#include using namespace std; void main() { srand((unsigned int)time(0)); int iNumber[9] = {}; // 1 ~9 까지의 숫자를 설정. for (int i = 0;i Programming/ C & C++ 2018.02.13