-
C++연습]두 int를 읽어서 출력하는 while 루프로 이뤄진 프로그램 작성코딩Coding/C++_연습 2021. 12. 2. 22:37728x90
#include <iomanip> #include <cmath> #include <fstream> #include <string> #include <string> #include <iostream> using namespace std; int main() { int num1 = 0; int num2 = 0; char again = 'y'; while (again == 'y') { cout << "Please enter two numbers to compare " << endl; cin >> num1 >> num2; cout << "The two numbers entered in order were " << num1 << " and " << num2 << endl; if (num1 < num2) { cout << num2 << " is the larger of " << num1 << " and " << num2 << endl; } else if (num1 > num2) { cout << num1 << " is the larger of " << num1 << " and " << num2 << endl; } cout << "\n Go again?(y/n): "; cin >> again; } return 0; }
반응형'코딩Coding > C++_연습' 카테고리의 다른 글
C++연습)How to make Unit converter in C++[kilo->mile+function+switch (0) 2021.12.03 C++연습] Unit Converter (0) 2021.12.03 C++연습] Programming Challenge 77개 도전 gogo~ (0) 2021.12.03 C++연습] C++ Finding Smallest & Largest Integers(C++ While Loop) (0) 2021.12.03 C++연습]대문자 소문자 차례대로 출력 (오른쪽으로 차례대로) (0) 2021.12.02 C++연습] a 97~z122차례대로 출력하기 문자char 알파벳 숫자 출력 (0) 2021.12.02 C++연습]달러 유료화 환율 변환 프로그램 만들기 (0) 2021.12.02 [C++연습]Calculator계산기 만들기 (0) 2020.12.22