언어(Language)/c++(6)
-
명품 C++ Programming 실습문제 ch01
[1번] #include int main() { std::cout
2022.11.29 -
수업 교재 ch17 Console Input-Ouput
[Exercise 17-1. CONSOLA 사용하기] #include using namespace std; #include "Consola.h" int main() { gotoxy(10, 5); cout
2022.11.29 -
[중간대비] ch05 Function & Preprocess
[Exercise5-1 함수 만들기] 두 값을 더하는 int Plus(int a, int b)와 빼는 int Minus(int a, int b)를 작성하고, 사용자로부터 두 수를 입력 받아 Plus, MInus 값을 두 함수를 이용하여 계산한 후, 다음과 같이 출력하라 실행 예) #include using namespace std; int Plus(int a, int b) { return a + b; } int Minus(int a, int b) { return a - b; } int main() { int x, y; cout > x >> y; cout
2022.10.27 -
[중간대비] ch04 Control Flow
[Exercise 4-1 switch문 사용하기] 입력된 문자들 중 'a'/'A','b'/'B'나 다른 문자들의 개수를 count하는 프로그램을 작성하시오. +)사용자로부터 문자들을 입력받아, a/A, b/B 문자 개수를 헤아리는 프로그램이다. 반복문과 함께 분기문(switch 문장)을 적절히 사용하자. 사용자가 입력하는 문자를 하나씩 읽어 들이는 코드는 다음과 같다. int ch; while((ch=cin.get()) != '\n') { ... } 실행 예) 내 코드) #include using namespace std; int main() { int ch, aCount = 0, bCount = 0, otherCount = 0; while ((ch = cin.get()) != '\n') { //사용자가..
2022.10.27 -
[중간대비] ch03 Variable, Operator, Expression
[Exercise 3-2 변수 영역 확인하기] 다음 프로그램의 실행 출력 결과를 미리 적은 후, 프로그램을 실행하여 확인하라 #include using namespace std; int x = 0; int main() { int x = 1; { cout
2022.10.27 -
[중간대비] ch02 서론
[Exercise 2-3 cin & cout 사용하기] 1. cin>>str과 cin.getline(str,100)의 차이점을 확인하라. #include using namespace std; int main() { char str1[100], str2[100]; cin >> str1; //blank 읽을 수 x cin.getline(str2, 100); //blank 읽을 수 o return 0; } 2. 다음을 실행하고, 출력결과에 대하여 설명하라 #include using namespace std; int main() { int i = 0; cout
2022.10.26