23.09.17 C++ Tutorial

CHR·2023년 9월 17일
0

C++

목록 보기
2/4

Naming Convention

int file_size; // Snake Case
int FileSize; // Pascal Case
int fileSize; // Camel Case
int iFileSize; // Hungarian Notation (not relevant anymore)

console 출력

(...)

int main() {
	int x = 10;
    int y = 20;
    
    // #1
    cout << "x = " << x << endl;
    cout << "y = " << y;
    
    // #2
    cout << "x = " << x << endl
         << "y = " << y;
    
    return 0;
}

console 입력

입력은 줄바꿈이나 공백(개수 상관 없음)으로 구분됨
10\n20 or 10 20 입력 ==> x=10, y=20

(...)

int main() {
	double x;
    double y;
    
    // #1
    cin >> x;
    cin >> y;
    
    // #2
    cin >> x >> y;
    
    return 0;
}

math library

#include <iostream>
#include <cmath>

using namespace std;

int main() {
	double result1 = floor(1.2);
    cout << result1;  // 1
    
    double result2 = pow(2, 3);
    cout << result2;  // 8
    
    return 0;
}

comment

주석은 남용하면 좋지 않음
only to explain whys and how
not what

#include <iostream>

using namespace std;

int main() {
	// 이것은 주석입니다.
    // 슬래시 2개!
    
    /*
    여러 줄 주석
    (/* */)
    */
    
    return 0;
}
profile
🍷

0개의 댓글

관련 채용 정보