일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 조건문
- element 조회
- 함수
- xss game 풀이
- jQuery
- sql injection
- 백준 파이썬
- github
- 사칙연산
- object
- xss game
- IF문
- htmlspecialchars
- 김성엽 대표님
- suninatas 풀이
- property
- document
- burp suite
- 백준 알고리즘
- 포인터
- python
- lord of sql injection
- 메소드
- 자바스크립트
- 배열
- blind sql injection
- 객체
- Pwndbg
- 파이썬
- window
Archives
- Today
- Total
power-girl0-0
[ C++ ] 랜덤한 수 합 맞추기 본문
728x90
랜덤한 수의 합 맞추기
#include <iostream> #include <time.h> #include <stdlib.h> using namespace std; int main(){ int a, b, answer,result; int count=0; srand(time(NULL)); while(1){ a = rand()%10+1; b = rand()%10+1; result = a+b; cout<<endl<<"첫번째 수 : "<<a<<endl; cout<<"두번째 수 : "<<b<<endl; cout<<"정답을 입력하세요."<<endl; cin >> answer; count+=1; if(result == answer){ cout<<endl<<"정답!!!"<<endl; cout<<"합은 "<<result<<"였습니다."<<endl; cout<<count<<"번만에 맞췄습니다."<<endl; break; } } return 0; }
728x90
'언어 > C++' 카테고리의 다른 글
[ C++ ] 해밍코드 거리 구하기 (0) | 2021.03.23 |
---|---|
[ C++ ] 반 평균 구하기 (0) | 2021.03.23 |
[ C++ ] 문자를 입력받아 모음과 자음 수 구하기 (0) | 2021.03.23 |
[ C++ ] 랜덤 수 & 최대값 & 정렬 (0) | 2021.03.16 |
[ C++ ] 출력 & 입력 (0) | 2021.03.16 |
Comments