SlideShare a Scribd company logo
Variables and
Selection Statement
Presented by Junyoung Jung
Club MARO
Dept. of Electronic and Radio Engineering
Kyung Hee Univ.
ch2.
Content
1.
Variables and Types
2.
Operators
3.
Selection statement
4.
Practice
5.
Assignments
0.
Last class Review
Content
3
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
. . .
Computer
Content
4
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
// iostream 이라는 header 파일(;cpp파일 앞에 위치)을 포함
#include <iostream>
// sdt 라는 namespace(; 소속, ‘준영이의’ 외모, ‘동재의’ 외모) 사용
using namespace std;
int main()
{
// Hello World 문자열 모니터에 출력
cout << “Hello World” << endl;
return 0;
}
Content
5
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
변수란 무엇인가?
먼저 컴퓨터 구조를 알아보자
Content
6
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
CPU Memory
I/O I/O
. . .
0
4
8
100
104
108
Processing
Content
7
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
데이터가 저장될 임의의 공간
메모리에 변수가
저장될 공간을 할당하는 것
# 변수
# 변수 선언
Content
8
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
- true, new, int 등 미리 지정되어 있는 키워드 불가
- 변수 이름 첫 글자는 숫자 불가
- 변수 이름에 특수문자 포함 불가
- 변수 이름 사이의 공백 불가
# 변수 선언 주의사항
…
int main() {
int powerButton, keyButton;
double m_value;
char in_signature;
…
return 0;
}
Content
9
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
가독성이 좋은 이름을 사용하자!!
…
int main() {
int num;
// num이 어떤 값을 가지는지 알지 못하기 때문에 error
cout << num << endl;
return 0;
}
Content
10
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
변수의 초기화를 잊지 말자!!
Content
11
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
int 정수형 변수 4byte
double 실수형 변수 8byte
char 문자형 변수 1byte
# 주요 변수
Content
12
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
#include <iostream>
using namespace std;
int main() {
// 정수형 변수 a선언, a에 100 할당
int a;
a = 100;
cout << a << endl;
return 0;
}
Content
13
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
변수가 있다면
상수도 있을까?
Content
14
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
#include <iostream>
using namespace std;
const double pi = 3.141592;
int main() {
…
const int a = 100;
return 0;
}
Content
15
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
지역변수(local value),
전역변수(global value)
차이 조사하기!!!
Assignment 1)
Content
16
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
연산자(Operator)?
data를 information으로
사용할 수 있게끔 해주는 역할
- 준영 생각
Content
17
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
# 산술 연산자
# 대입 연산자
# 논리 연산자
+, -, *, /, %
a = a+1;
a += 1;
a++;
a && b;
a || b;
# 관계 연산자 a == b;
a != b;
Content
18
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
#include <iostream>
using namespace std;
int main() {
/*
1. 정수형 변수 num과 실수형 변수 result을 선언
2. result 을 10이라 할당
3. num 을 키보드 입력
4. num과 result의 합, 차, 곱,
나눗셈의 몫과 나머지를 모니터 출력
*/
}
#Practice 산술 연산자
Content
19
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
…
int main() {
int a = 100;
a++;
cout << “a++결과 : ” << a << endl;
a -= 21;
cout << “a -= 21 결과 : ” << a << endl;
a = a*2;
cout << “a= a*2 결과 : ” << a << endl;
return 0;
}
#Practice 대입 연산자
Content
20
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
조건문(Selection statement)?
특정조건을 만족할 때,
해당 문장을 수행
- if-else 문
- switch 문
Content
21
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
if-else ①
if(조건문) {
조건문 만족시 실행할 문장
}
Content
22
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
if-else ②
if(조건문) {
조건문 만족시 실행할 문장
}
else {
조건문에 해당하지 않는 사항
}
Content
23
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
if-else ③
if(조건1) {
조건문 만족시 실행할 문장
}
else if (조건2) {
조건문에 해당하지 않는 사항
}
else if (조건3) {
}
…
else {
}
Content
24
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
…
int main() {
int a, b;
cin >> a >> b;
if(a == b) {
cout << a << “와 ” << b << “가 같습니다.” << endl;
}
else if(a > b) {
cout << a << “가 ” << b << “보다 큽니다.” << endl;
}
else {
cout << a << “가 ” << b << “보다 작습니다.” << endl;
}
return 0;
}
#Practice if-else
Content
25
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
Assignment 2 를
같이 만들어 보아요 !!
Content
26
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
지역변수(local value),
전역변수(global value)
차이 조사하기!!!
Assignment 1)
Content
27
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes 1. 정수형 변수 선언
2. cin을 통해 두 변수에 값 할당
3. if-else문을 이용하여
사칙연산 프로그램 만들기
Assignment 2)
Pracctice 를 본인의 스타일로 다시 해보기
Content
28
0.
Last classReview
2.
Operators
3.
Selectionstatement
4.
Practice
5.
Assignments
1.
VariablesandTypes
Assignment 2의
내용을 설계하기
Assignment 3)
Thank you

More Related Content

What's hot

2013 C++ Study For Students #1
2013 C++ Study For Students #12013 C++ Study For Students #1
2013 C++ Study For Students #1
Chris Ohk
 
[TechDays Korea 2015] 녹슨 C++ 코드에 모던 C++로 기름칠하기
[TechDays Korea 2015] 녹슨 C++ 코드에 모던 C++로 기름칠하기[TechDays Korea 2015] 녹슨 C++ 코드에 모던 C++로 기름칠하기
[TechDays Korea 2015] 녹슨 C++ 코드에 모던 C++로 기름칠하기
Chris Ohk
 
C++ Concurrency in Action 9-2 Interrupting threads
C++ Concurrency in Action 9-2 Interrupting threadsC++ Concurrency in Action 9-2 Interrupting threads
C++ Concurrency in Action 9-2 Interrupting threads
Seok-joon Yun
 
5 swift 기초함수
5 swift 기초함수5 swift 기초함수
5 swift 기초함수
Changwon National University
 
포트폴리오에서 사용한 모던 C++
포트폴리오에서 사용한 모던 C++포트폴리오에서 사용한 모던 C++
포트폴리오에서 사용한 모던 C++
KWANGIL KIM
 
Refactoring - Chapter 8.2
Refactoring - Chapter 8.2Refactoring - Chapter 8.2
Refactoring - Chapter 8.2
Ji Ung Lee
 
C++17 Key Features Summary - Ver 2
C++17 Key Features Summary - Ver 2C++17 Key Features Summary - Ver 2
C++17 Key Features Summary - Ver 2
Chris Ohk
 
코딩인카페 C&JAVA 기초과정 C프로그래밍(1)
코딩인카페 C&JAVA 기초과정 C프로그래밍(1)코딩인카페 C&JAVA 기초과정 C프로그래밍(1)
코딩인카페 C&JAVA 기초과정 C프로그래밍(1)
유익아카데미
 
코딩인카페 C&JAVA 기초과정 C프로그래밍(3)
코딩인카페 C&JAVA 기초과정 C프로그래밍(3)코딩인카페 C&JAVA 기초과정 C프로그래밍(3)
코딩인카페 C&JAVA 기초과정 C프로그래밍(3)
유익아카데미
 
Effective Modern C++ MVA item 18 Use std::unique_ptr for exclusive-ownership ...
Effective Modern C++ MVA item 18 Use std::unique_ptr for exclusive-ownership ...Effective Modern C++ MVA item 18 Use std::unique_ptr for exclusive-ownership ...
Effective Modern C++ MVA item 18 Use std::unique_ptr for exclusive-ownership ...
Seok-joon Yun
 
[C++ Korea] Effective Modern C++ MVA item 8 Prefer nullptr to 0 and null +윤석준
[C++ Korea] Effective Modern C++ MVA item 8 Prefer nullptr to 0 and null +윤석준[C++ Korea] Effective Modern C++ MVA item 8 Prefer nullptr to 0 and null +윤석준
[C++ Korea] Effective Modern C++ MVA item 8 Prefer nullptr to 0 and null +윤석준
Seok-joon Yun
 
[devil's camp] - 알고리즘 대회와 STL (박인서)
[devil's camp] - 알고리즘 대회와 STL (박인서)[devil's camp] - 알고리즘 대회와 STL (박인서)
[devil's camp] - 알고리즘 대회와 STL (박인서)
NAVER D2
 
C++20 Key Features Summary
C++20 Key Features SummaryC++20 Key Features Summary
C++20 Key Features Summary
Chris Ohk
 
자바스크립트 함수
자바스크립트 함수자바스크립트 함수
자바스크립트 함수유진 변
 
[C++ Korea] Effective Modern C++ MVA item 9 Prefer alias declarations to type...
[C++ Korea] Effective Modern C++ MVA item 9 Prefer alias declarations to type...[C++ Korea] Effective Modern C++ MVA item 9 Prefer alias declarations to type...
[C++ Korea] Effective Modern C++ MVA item 9 Prefer alias declarations to type...
Seok-joon Yun
 
Cleancode ch14-successive refinement
Cleancode ch14-successive refinementCleancode ch14-successive refinement
Cleancode ch14-successive refinementKyungryul KIM
 
[C++ korea] effective modern c++ study item 7 distinguish between () and {} w...
[C++ korea] effective modern c++ study item 7 distinguish between () and {} w...[C++ korea] effective modern c++ study item 7 distinguish between () and {} w...
[C++ korea] effective modern c++ study item 7 distinguish between () and {} w...
Seok-joon Yun
 
[C++ Korea 2nd Seminar] Ranges for The Cpp Standard Library
[C++ Korea 2nd Seminar] Ranges for The Cpp Standard Library[C++ Korea 2nd Seminar] Ranges for The Cpp Standard Library
[C++ Korea 2nd Seminar] Ranges for The Cpp Standard Library
DongMin Choi
 
[Swift] Generics
[Swift] Generics[Swift] Generics
[Swift] Generics
Bill Kim
 
Java8 람다
Java8 람다Java8 람다
Java8 람다
Jong Woo Rhee
 

What's hot (20)

2013 C++ Study For Students #1
2013 C++ Study For Students #12013 C++ Study For Students #1
2013 C++ Study For Students #1
 
[TechDays Korea 2015] 녹슨 C++ 코드에 모던 C++로 기름칠하기
[TechDays Korea 2015] 녹슨 C++ 코드에 모던 C++로 기름칠하기[TechDays Korea 2015] 녹슨 C++ 코드에 모던 C++로 기름칠하기
[TechDays Korea 2015] 녹슨 C++ 코드에 모던 C++로 기름칠하기
 
C++ Concurrency in Action 9-2 Interrupting threads
C++ Concurrency in Action 9-2 Interrupting threadsC++ Concurrency in Action 9-2 Interrupting threads
C++ Concurrency in Action 9-2 Interrupting threads
 
5 swift 기초함수
5 swift 기초함수5 swift 기초함수
5 swift 기초함수
 
포트폴리오에서 사용한 모던 C++
포트폴리오에서 사용한 모던 C++포트폴리오에서 사용한 모던 C++
포트폴리오에서 사용한 모던 C++
 
Refactoring - Chapter 8.2
Refactoring - Chapter 8.2Refactoring - Chapter 8.2
Refactoring - Chapter 8.2
 
C++17 Key Features Summary - Ver 2
C++17 Key Features Summary - Ver 2C++17 Key Features Summary - Ver 2
C++17 Key Features Summary - Ver 2
 
코딩인카페 C&JAVA 기초과정 C프로그래밍(1)
코딩인카페 C&JAVA 기초과정 C프로그래밍(1)코딩인카페 C&JAVA 기초과정 C프로그래밍(1)
코딩인카페 C&JAVA 기초과정 C프로그래밍(1)
 
코딩인카페 C&JAVA 기초과정 C프로그래밍(3)
코딩인카페 C&JAVA 기초과정 C프로그래밍(3)코딩인카페 C&JAVA 기초과정 C프로그래밍(3)
코딩인카페 C&JAVA 기초과정 C프로그래밍(3)
 
Effective Modern C++ MVA item 18 Use std::unique_ptr for exclusive-ownership ...
Effective Modern C++ MVA item 18 Use std::unique_ptr for exclusive-ownership ...Effective Modern C++ MVA item 18 Use std::unique_ptr for exclusive-ownership ...
Effective Modern C++ MVA item 18 Use std::unique_ptr for exclusive-ownership ...
 
[C++ Korea] Effective Modern C++ MVA item 8 Prefer nullptr to 0 and null +윤석준
[C++ Korea] Effective Modern C++ MVA item 8 Prefer nullptr to 0 and null +윤석준[C++ Korea] Effective Modern C++ MVA item 8 Prefer nullptr to 0 and null +윤석준
[C++ Korea] Effective Modern C++ MVA item 8 Prefer nullptr to 0 and null +윤석준
 
[devil's camp] - 알고리즘 대회와 STL (박인서)
[devil's camp] - 알고리즘 대회와 STL (박인서)[devil's camp] - 알고리즘 대회와 STL (박인서)
[devil's camp] - 알고리즘 대회와 STL (박인서)
 
C++20 Key Features Summary
C++20 Key Features SummaryC++20 Key Features Summary
C++20 Key Features Summary
 
자바스크립트 함수
자바스크립트 함수자바스크립트 함수
자바스크립트 함수
 
[C++ Korea] Effective Modern C++ MVA item 9 Prefer alias declarations to type...
[C++ Korea] Effective Modern C++ MVA item 9 Prefer alias declarations to type...[C++ Korea] Effective Modern C++ MVA item 9 Prefer alias declarations to type...
[C++ Korea] Effective Modern C++ MVA item 9 Prefer alias declarations to type...
 
Cleancode ch14-successive refinement
Cleancode ch14-successive refinementCleancode ch14-successive refinement
Cleancode ch14-successive refinement
 
[C++ korea] effective modern c++ study item 7 distinguish between () and {} w...
[C++ korea] effective modern c++ study item 7 distinguish between () and {} w...[C++ korea] effective modern c++ study item 7 distinguish between () and {} w...
[C++ korea] effective modern c++ study item 7 distinguish between () and {} w...
 
[C++ Korea 2nd Seminar] Ranges for The Cpp Standard Library
[C++ Korea 2nd Seminar] Ranges for The Cpp Standard Library[C++ Korea 2nd Seminar] Ranges for The Cpp Standard Library
[C++ Korea 2nd Seminar] Ranges for The Cpp Standard Library
 
[Swift] Generics
[Swift] Generics[Swift] Generics
[Swift] Generics
 
Java8 람다
Java8 람다Java8 람다
Java8 람다
 

Viewers also liked

[C++]6 function2
[C++]6 function2[C++]6 function2
[C++]6 function2
Junyoung Jung
 
[C++]1 ready tobeprogrammer
[C++]1 ready tobeprogrammer[C++]1 ready tobeprogrammer
[C++]1 ready tobeprogrammer
Junyoung Jung
 
[C++]4 review
[C++]4 review[C++]4 review
[C++]4 review
Junyoung Jung
 
[2016 K-global 스마트디바이스톤] inSpot
[2016 K-global 스마트디바이스톤] inSpot[2016 K-global 스마트디바이스톤] inSpot
[2016 K-global 스마트디바이스톤] inSpot
Junyoung Jung
 
[대학생 연합 해커톤 UNITHON 3RD] Mingginyu_ppt
[대학생 연합 해커톤 UNITHON 3RD] Mingginyu_ppt[대학생 연합 해커톤 UNITHON 3RD] Mingginyu_ppt
[대학생 연합 해커톤 UNITHON 3RD] Mingginyu_ppt
Junyoung Jung
 
[C++]5 function
[C++]5 function[C++]5 function
[C++]5 function
Junyoung Jung
 
[Maybee] inSpot
[Maybee] inSpot[Maybee] inSpot
[Maybee] inSpot
Junyoung Jung
 
[C++]3 loop statement
[C++]3 loop statement[C++]3 loop statement
[C++]3 loop statement
Junyoung Jung
 
16 학술제 마무리 자료
16 학술제 마무리 자료16 학술제 마무리 자료
16 학술제 마무리 자료
Junyoung Jung
 

Viewers also liked (9)

[C++]6 function2
[C++]6 function2[C++]6 function2
[C++]6 function2
 
[C++]1 ready tobeprogrammer
[C++]1 ready tobeprogrammer[C++]1 ready tobeprogrammer
[C++]1 ready tobeprogrammer
 
[C++]4 review
[C++]4 review[C++]4 review
[C++]4 review
 
[2016 K-global 스마트디바이스톤] inSpot
[2016 K-global 스마트디바이스톤] inSpot[2016 K-global 스마트디바이스톤] inSpot
[2016 K-global 스마트디바이스톤] inSpot
 
[대학생 연합 해커톤 UNITHON 3RD] Mingginyu_ppt
[대학생 연합 해커톤 UNITHON 3RD] Mingginyu_ppt[대학생 연합 해커톤 UNITHON 3RD] Mingginyu_ppt
[대학생 연합 해커톤 UNITHON 3RD] Mingginyu_ppt
 
[C++]5 function
[C++]5 function[C++]5 function
[C++]5 function
 
[Maybee] inSpot
[Maybee] inSpot[Maybee] inSpot
[Maybee] inSpot
 
[C++]3 loop statement
[C++]3 loop statement[C++]3 loop statement
[C++]3 loop statement
 
16 학술제 마무리 자료
16 학술제 마무리 자료16 학술제 마무리 자료
16 학술제 마무리 자료
 

Similar to [C++]2 variables andselectionstatement

Hoons 닷넷 정기세미나
Hoons 닷넷 정기세미나Hoons 닷넷 정기세미나
Hoons 닷넷 정기세미나
병걸 윤
 
HI-ARC PS 101
HI-ARC PS 101HI-ARC PS 101
HI-ARC PS 101
Jae-yeol Lee
 
02장 자료형과 연산자
02장 자료형과 연산자02장 자료형과 연산자
02장 자료형과 연산자웅식 전
 
14장 - 15장 예외처리, 템플릿
14장 - 15장 예외처리, 템플릿14장 - 15장 예외처리, 템플릿
14장 - 15장 예외처리, 템플릿
유석 남
 
C++에서 Objective-C까지
C++에서 Objective-C까지C++에서 Objective-C까지
C++에서 Objective-C까지
Changwon National University
 
Sonarqube 20160509
Sonarqube 20160509Sonarqube 20160509
Sonarqube 20160509
영석 조
 
Lambda 란 무엇인가
Lambda 란 무엇인가Lambda 란 무엇인가
Lambda 란 무엇인가
Vong Sik Kong
 
[NDC 2016] 유니티, iOS에서 LINQ 사용하기
[NDC 2016] 유니티, iOS에서 LINQ 사용하기[NDC 2016] 유니티, iOS에서 LINQ 사용하기
[NDC 2016] 유니티, iOS에서 LINQ 사용하기
Daehee Kim
 
Gpg gems1 1.3
Gpg gems1 1.3Gpg gems1 1.3
Gpg gems1 1.3david nc
 
RNC C++ lecture_2 operator, if
RNC C++ lecture_2 operator, ifRNC C++ lecture_2 operator, if
RNC C++ lecture_2 operator, if
itlockit
 
[143] Modern C++ 무조건 써야 해?
[143] Modern C++ 무조건 써야 해?[143] Modern C++ 무조건 써야 해?
[143] Modern C++ 무조건 써야 해?
NAVER D2
 
20201121 코드 삼분지계
20201121 코드 삼분지계20201121 코드 삼분지계
20201121 코드 삼분지계
Chiwon Song
 
C언어 세미나 - 함수
C언어 세미나 - 함수C언어 세미나 - 함수
C언어 세미나 - 함수
SeungHyun Lee
 
Boost라이브러리의내부구조 20151111 서진택
Boost라이브러리의내부구조 20151111 서진택Boost라이브러리의내부구조 20151111 서진택
Boost라이브러리의내부구조 20151111 서진택
JinTaek Seo
 
[SWCON211] LectureCode_13_Matlab Practice.pptx
[SWCON211] LectureCode_13_Matlab Practice.pptx[SWCON211] LectureCode_13_Matlab Practice.pptx
[SWCON211] LectureCode_13_Matlab Practice.pptx
oreo329
 
Java stream v0.1
Java stream v0.1Java stream v0.1
Java stream v0.1
Hyosang Hong
 
Java stream v0.1
Java stream v0.1Java stream v0.1
Java stream v0.1
Hyosang Hong
 

Similar to [C++]2 variables andselectionstatement (20)

06장 함수
06장 함수06장 함수
06장 함수
 
Python - Module
Python - ModulePython - Module
Python - Module
 
Hoons 닷넷 정기세미나
Hoons 닷넷 정기세미나Hoons 닷넷 정기세미나
Hoons 닷넷 정기세미나
 
HI-ARC PS 101
HI-ARC PS 101HI-ARC PS 101
HI-ARC PS 101
 
02장 자료형과 연산자
02장 자료형과 연산자02장 자료형과 연산자
02장 자료형과 연산자
 
14장 - 15장 예외처리, 템플릿
14장 - 15장 예외처리, 템플릿14장 - 15장 예외처리, 템플릿
14장 - 15장 예외처리, 템플릿
 
C++에서 Objective-C까지
C++에서 Objective-C까지C++에서 Objective-C까지
C++에서 Objective-C까지
 
Sonarqube 20160509
Sonarqube 20160509Sonarqube 20160509
Sonarqube 20160509
 
Lambda 란 무엇인가
Lambda 란 무엇인가Lambda 란 무엇인가
Lambda 란 무엇인가
 
[NDC 2016] 유니티, iOS에서 LINQ 사용하기
[NDC 2016] 유니티, iOS에서 LINQ 사용하기[NDC 2016] 유니티, iOS에서 LINQ 사용하기
[NDC 2016] 유니티, iOS에서 LINQ 사용하기
 
Gpg gems1 1.3
Gpg gems1 1.3Gpg gems1 1.3
Gpg gems1 1.3
 
RNC C++ lecture_2 operator, if
RNC C++ lecture_2 operator, ifRNC C++ lecture_2 operator, if
RNC C++ lecture_2 operator, if
 
[143] Modern C++ 무조건 써야 해?
[143] Modern C++ 무조건 써야 해?[143] Modern C++ 무조건 써야 해?
[143] Modern C++ 무조건 써야 해?
 
20201121 코드 삼분지계
20201121 코드 삼분지계20201121 코드 삼분지계
20201121 코드 삼분지계
 
C언어 세미나 - 함수
C언어 세미나 - 함수C언어 세미나 - 함수
C언어 세미나 - 함수
 
Boost라이브러리의내부구조 20151111 서진택
Boost라이브러리의내부구조 20151111 서진택Boost라이브러리의내부구조 20151111 서진택
Boost라이브러리의내부구조 20151111 서진택
 
강의자료 2
강의자료 2강의자료 2
강의자료 2
 
[SWCON211] LectureCode_13_Matlab Practice.pptx
[SWCON211] LectureCode_13_Matlab Practice.pptx[SWCON211] LectureCode_13_Matlab Practice.pptx
[SWCON211] LectureCode_13_Matlab Practice.pptx
 
Java stream v0.1
Java stream v0.1Java stream v0.1
Java stream v0.1
 
Java stream v0.1
Java stream v0.1Java stream v0.1
Java stream v0.1
 

More from Junyoung Jung

[KCC oral] 정준영
[KCC oral] 정준영[KCC oral] 정준영
[KCC oral] 정준영
Junyoung Jung
 
전자석을 이용한 타자 연습기
전자석을 이용한 타자 연습기전자석을 이용한 타자 연습기
전자석을 이용한 타자 연습기
Junyoung Jung
 
[2018 평창올림픽 기념 SW 공모전] Nolza 보고서
[2018 평창올림픽 기념 SW 공모전] Nolza 보고서[2018 평창올림픽 기념 SW 공모전] Nolza 보고서
[2018 평창올림픽 기념 SW 공모전] Nolza 보고서
Junyoung Jung
 
[2018 평창올림픽 기념 SW 공모전] Nolza - Activity curation service
[2018 평창올림픽 기념 SW 공모전] Nolza - Activity curation service[2018 평창올림픽 기념 SW 공모전] Nolza - Activity curation service
[2018 평창올림픽 기념 SW 공모전] Nolza - Activity curation service
Junyoung Jung
 
SCC (Security Control Center)
SCC (Security Control Center)SCC (Security Control Center)
SCC (Security Control Center)
Junyoung Jung
 
Google File System
Google File SystemGoogle File System
Google File System
Junyoung Jung
 
sauber92's Potfolio (ver.2012~2017)
sauber92's Potfolio (ver.2012~2017)sauber92's Potfolio (ver.2012~2017)
sauber92's Potfolio (ver.2012~2017)
Junyoung Jung
 
Electron을 사용해서 Arduino 제어하기
Electron을 사용해서 Arduino 제어하기Electron을 사용해서 Arduino 제어하기
Electron을 사용해서 Arduino 제어하기
Junyoung Jung
 
[UNITHON 5TH] KOK - 프로귀찮러를 위한 지출관리 서비스
[UNITHON 5TH] KOK - 프로귀찮러를 위한 지출관리 서비스[UNITHON 5TH] KOK - 프로귀찮러를 위한 지출관리 서비스
[UNITHON 5TH] KOK - 프로귀찮러를 위한 지출관리 서비스
Junyoung Jung
 
[우아주, Etc] 정준영 - 페이시스템
[우아주, Etc] 정준영 - 페이시스템[우아주, Etc] 정준영 - 페이시스템
[우아주, Etc] 정준영 - 페이시스템
Junyoung Jung
 
[우아주, 7월] 정준영
[우아주, 7월] 정준영[우아주, 7월] 정준영
[우아주, 7월] 정준영
Junyoung Jung
 
[team608] 전자석을 이용한 타자연습기
[team608] 전자석을 이용한 타자연습기[team608] 전자석을 이용한 타자연습기
[team608] 전자석을 이용한 타자연습기
Junyoung Jung
 
[Kcc poster] 정준영
[Kcc poster] 정준영[Kcc poster] 정준영
[Kcc poster] 정준영
Junyoung Jung
 
[Graduation Project] 전자석을 이용한 타자 연습기
[Graduation Project] 전자석을 이용한 타자 연습기[Graduation Project] 전자석을 이용한 타자 연습기
[Graduation Project] 전자석을 이용한 타자 연습기
Junyoung Jung
 
[KCC poster]정준영
[KCC poster]정준영[KCC poster]정준영
[KCC poster]정준영
Junyoung Jung
 
[2015전자과공모전] ppt
[2015전자과공모전] ppt[2015전자과공모전] ppt
[2015전자과공모전] ppt
Junyoung Jung
 

More from Junyoung Jung (16)

[KCC oral] 정준영
[KCC oral] 정준영[KCC oral] 정준영
[KCC oral] 정준영
 
전자석을 이용한 타자 연습기
전자석을 이용한 타자 연습기전자석을 이용한 타자 연습기
전자석을 이용한 타자 연습기
 
[2018 평창올림픽 기념 SW 공모전] Nolza 보고서
[2018 평창올림픽 기념 SW 공모전] Nolza 보고서[2018 평창올림픽 기념 SW 공모전] Nolza 보고서
[2018 평창올림픽 기념 SW 공모전] Nolza 보고서
 
[2018 평창올림픽 기념 SW 공모전] Nolza - Activity curation service
[2018 평창올림픽 기념 SW 공모전] Nolza - Activity curation service[2018 평창올림픽 기념 SW 공모전] Nolza - Activity curation service
[2018 평창올림픽 기념 SW 공모전] Nolza - Activity curation service
 
SCC (Security Control Center)
SCC (Security Control Center)SCC (Security Control Center)
SCC (Security Control Center)
 
Google File System
Google File SystemGoogle File System
Google File System
 
sauber92's Potfolio (ver.2012~2017)
sauber92's Potfolio (ver.2012~2017)sauber92's Potfolio (ver.2012~2017)
sauber92's Potfolio (ver.2012~2017)
 
Electron을 사용해서 Arduino 제어하기
Electron을 사용해서 Arduino 제어하기Electron을 사용해서 Arduino 제어하기
Electron을 사용해서 Arduino 제어하기
 
[UNITHON 5TH] KOK - 프로귀찮러를 위한 지출관리 서비스
[UNITHON 5TH] KOK - 프로귀찮러를 위한 지출관리 서비스[UNITHON 5TH] KOK - 프로귀찮러를 위한 지출관리 서비스
[UNITHON 5TH] KOK - 프로귀찮러를 위한 지출관리 서비스
 
[우아주, Etc] 정준영 - 페이시스템
[우아주, Etc] 정준영 - 페이시스템[우아주, Etc] 정준영 - 페이시스템
[우아주, Etc] 정준영 - 페이시스템
 
[우아주, 7월] 정준영
[우아주, 7월] 정준영[우아주, 7월] 정준영
[우아주, 7월] 정준영
 
[team608] 전자석을 이용한 타자연습기
[team608] 전자석을 이용한 타자연습기[team608] 전자석을 이용한 타자연습기
[team608] 전자석을 이용한 타자연습기
 
[Kcc poster] 정준영
[Kcc poster] 정준영[Kcc poster] 정준영
[Kcc poster] 정준영
 
[Graduation Project] 전자석을 이용한 타자 연습기
[Graduation Project] 전자석을 이용한 타자 연습기[Graduation Project] 전자석을 이용한 타자 연습기
[Graduation Project] 전자석을 이용한 타자 연습기
 
[KCC poster]정준영
[KCC poster]정준영[KCC poster]정준영
[KCC poster]정준영
 
[2015전자과공모전] ppt
[2015전자과공모전] ppt[2015전자과공모전] ppt
[2015전자과공모전] ppt
 

[C++]2 variables andselectionstatement