정체불명의 모모

c++ 문제 : 챕터2. 문제 2개(어서와c++은 처음이지?) 본문

프로그래밍(c++)

c++ 문제 : 챕터2. 문제 2개(어서와c++은 처음이지?)

정체불명의 모모 2019. 11. 28. 16:33

문제1 : 비밀코드 맞추기 게임

  • 컴퓨터는 사용자의 추측을 읽고, 자신의 비밀 코드와 비교 한다.
  • 비밀코드 와 사용자가 입력한 코드의 앞 뒤 구분을 해줘야 한다

추가 조건(내가 만든)

  • 맞출때까지 게임이 실행되도록 하시오.
#include "pch.h"
#include <iostream>
#include <ctime>
#include <cstdlib>


using namespace std;

int main()
{

	srand(time(NULL));
	char number = NULL;
	char input = NULL;

	number = rand() % 10 + 'a';

	cout << "비밀 코드를 맞추 시오." << endl;
	
	while (number != input)
	{
	   cout << "내가 생각 하는 비밀 코드는 ?  : ";
	   cin >> input;
	   
	   
	   if (number == input) {
	   cout << "맞췄습니다!!" << " 비밀 코드는 " << number << endl;
	   break;
	   }
	   
	   	if (input > number) {
			cout << "틀렸습니다!" << endl;
          	cout << "앞에 있음" << endl;
			continue;
	      }
	   	else if (input < number) {
			cout << "틀렸습니다!" << endl;
          	cout << "뒤에 있음" << endl;
			continue;
	   	}
	   
	}

	return 0;
}

잘 나오고 있습니다. 



문제2 : 세 개의 정수 중에서 큰 수 찾기

#include<isotream>

using namespace std;

int main( )
{
 int a,b,c, largest ;
 
 cout << "3개의 정수를 입력하시오 : " ;
 cin >> a >> b >> c ;
 
 if( a>b && a>c )
    largest = a;
 else if (b>a && b>c)
     largest = b;
 else 
    largest = c;
    
 cout << "가장 큰 정수는" << largest >>endl;
 return 0;
 }

앞전에 했던 예제와 매우 비슷합니다.ㅎㅎ

Comments