5/8 (코드카타)

·
본캠프
#include #include using namespace std;string solution(string phone_number) { string answer = phone_number; for (int i = 0; i 코드카타 전화번호 가리기코드 class의 정의class Student{ //동작 정의(이를 멤버함수라고 합니다) double getAvg(); int getMaxNum(); //데이터 정의(이를 멤버변수라고 합니다.) int kor[3]; int eng[3]; int math[3];}; 멤버함수 구현(클래스 내부)#include #include //max 함수 사용#include using namespace std;cla..