-
JUNGOL...3일지 2020. 10. 9. 00:32
Language_Code/출력/자가진단2
문제
다음과 같이 출력되는 프로그램을 작성하라.
출력 예
Programming! It's fun.
BasicPrint02.h
#include <iostream>
BasicPrint02.cpp
void BasicPrint02::Code() { std::cout << "Programming! It's fun."; }
Language_Code/출력/자가진단3
문제
아래와 같이 출력되는 프로그램을 작성하라.
출력 예
My name is Hong Gil Dong.
I am 13 years old.
BasicPrint03.h
#include <iostream>
BasicPrint03.cpp
void BasicPrint03::Code() { std::cout << "My name is Hong Gil Dong.\n"; std::cout << "I am 13 years old."; }
Language_Code/출력/자가진단4
문제
다음과 같이 출력되는 프로그램을 작성하라.
출력 예
(@) (@)
(=^.^=)
(-m-m-)
Hint!
첫 번째 줄 중간에 공백 하나가 포함되어 있다.
BasicPrint04.h
#include <iostream>
BasicPrint04.cpp
void BasicPrint04::Code() { std::cout << "(@) (@)\n"; std::cout << "(=^.^=)\n"; std::cout << "(-m-m-)"; }
Language_Code/출력/자가진단5
문제
서식 문자를 사용하여 다음과 같이 출력되는 프로그램을 작성하라.
출력 예
I can program well.
Dreams come true.
BasicPrint05.h
#include <iostream>
BasicPrint05.cpp
void BasicPrint05::Code() { std::string str1("I can program well.\n"); std::string str2("Dreams come true."); std::cout << str1 << str2; }
Language_Code/출력/자가진단6
문제
다음과 같이 출력되는 프로그램을 작성하라.
출력 예
My height
170
My weight
68.600000
BasicPrint06.h
#include <iostream>
BasicPrint06.cpp
void BasicPrint06::Code() { std::cout <<"My height\n" "170\n" "My weight\n" "68.600000"; }
Language_Code/출력/자가진단7
문제
다음과 같이 출력되는 프로그램을 작성하라. (공백으로 구분하여 출력)
출력 예
5 Dan
5 * 2 = 10
BasicPrint07.h
#include <iostream>
BasicPrint07.cpp
void BasicPrint07::Code() { std::cout << 5 << " Dan\n"; std::cout << 5 << " * " << 2 << " = " << 5 * 2; }
Language_Code/출력/자가진단8
문제
다음과 같이 출력되는 프로갬을 작성하라.
(각 요소들은 10칸씩 공간을 확보하여 오른쪽으로 정렬하여 출력한다.)
출력 예
item count price
pen 20 100
note 5 95
eraser 110 97
BasicPrint08.h
#include <iostream> #include <iomanip>
BasicPrint08.cpp
void BasicPrint08::Code() { std::cout.setf(std::ios::right); std::cout << std::setw(10) << "item" << std::setw(10) << "count" << std::setw(10) << "price" << "\n" << std::setw(10) << "pen" << std::setw(10) << 20 << std::setw(10) << 100 << "\n" << std::setw(10) << "note" << std::setw(10) << 5 << std::setw(10) << 95 << "\n" << std::setw(10) << "eraser" << std::setw(10) << 110 << std::setw(10) << 97; }
NadanKim/CodingTest_JUNGOL: JUNGOL 코딩 테스트를 위한 저장소 (github.com)