1)데이터베이스에서의 데이터, 정보, 지식과 활용분야 1. 데이터, 정보, 지식 데이터(data) = 관찰의 결과로 나타난 정략적 혹은 정성적인 실제 값 정보(information) = 데이터에 의미를 부여한 것 지식(knowledge) = 사물이나 현상에 대한 이해 ex) 한라산 높이=data 한라산의 지리적 특성 = Information 한라산을 올라가는 방법 = knowledge\ 2. 데이터베이스의 활용 분야 Computer Science/Data Base 2022.10.14
[C/C++] c++ espresso(에스프레소) chapter 08 상속 연습문제 1. 클래스 각각 헤더에 정의를 cpp에 내용을 적었습니다. #pragma once #include using namespace std; class Employee { protected: string name; int number; public: Employee(); ~Employee(); void setEmployee(string n, int num); void getEmployee(); virtual void computeSalary(); }; #include"Employee.h" Employee::Employee() { this->name = ""; this->number = 0; } Employee::~Employee() {} void Employee::setEmployee(string n, in.. 프로그래밍 언어/c++ 2022.06.11
집의 평수를 제곱 미터로 바꾸는 프로그램(C++ espresso) c++ espresoo part1 프로그래밍 문제 2번 문제입니다. #include using namespace std; int main() { int KRoomSize = 0; cout KRoomSize; float WestRoomSize = 0; WestRoomSize = KRoomSize * 3.3058; cout 프로그래밍 언어/c++ 2022.03.28
C++로 상자의 부피 구하는 프로그램 //상자의 체적을 구하는 프로그램을 작성하여 보자 체적은 길이 너비 높이로 계산된다. //상자의 크기는 사용자가 입력한다.상자의 크기는 200x200x200을 넘지 않는다. 사용되는 변수의 크기를 최소로하여 보자 #include using namespace std; int main() { int llong; int depth; int height; cout 프로그래밍 언어/c++ 2022.03.25
윤성우 열혈 c++ 문제 04-2번 and 생성자 추가 버전 4-3 문제 문제 04-2번 #define _CRT_SECURE_NO_WARNINGS #include #include using namespace std; class Point { private: int xpos; int ypos; public: void Init(int x, int y) { xpos = x; ypos = y; } void ShowPointInfo() const { cout 프로그래밍 언어/c++ 2022.01.25
윤성우 열현 C++ 프로그래밍 문제 03-2번 문제 03-2번 문제 1번 #define _CRT_SECURE_NO_WARNINGS #include using namespace std; class Calculator { private: int AddCount = 0; int MinusCount = 0; int MutipleCount = 0; int DivisionCount = 0; public: float Add(float a, float b) { float result = a + b; AddCount++; return result; } float Minus(float a, float b) { float result = a - b; MinusCount++; return result; } float Division(float a, float b) { f.. 프로그래밍 언어/c++ 2022.01.21
열혈 c++ 문제 03-1[구조체 내에 함수 정의하기] 문제 03-1 #define _CRT_SECURE_NO_WARNINGS #include using namespace std; //구조체내 함수 정의 struct Point { int xpos; int ypos; void MovePos(int x, int y) //점의 좌표이동 { xpos += x; ypos += y; } void AddPoint(const Point& pos) //점의 좌표 증가 { xpos += pos.xpos; ypos += pos.ypos; } void ShowPosition() //현재 x, y 좌표 표시 { cout 프로그래밍 언어/c++ 2022.01.13
goto문을 활용하여 구구단 출력 프로그램(c언어) #includeint main(){//구구단 출력 프로그램 int i = 1; int x; printf("알고싶은 구구단 단수를 입력하시오"); scanf_s("%d", &x); // 단수를 입력 받음loop: printf("%d * %d=%d\n", x, i, x * i); i++; if (i == 10) goto end; goto loop; end: return 0;} 프로그래밍 언어/c프로그래밍 2021.09.12
달의 일수를 계산하는 프로그램(c언어) #include int main() { int month, days; printf("달을 입력하시오"); scanf_s("% d", &month); switch (month) {case 2: days = 28; break; case 4: case 6: case 9: case 11: days = 30; break; default: days = 31; break; } printf("%d월의 일수는 % d입니다.", month, days); return 0; } 프로그래밍 언어/c프로그래밍 2021.09.10