int file_size; // Snake Case
int FileSize; // Pascal Case
int fileSize; // Camel Case
int iFileSize; // Hungarian Notation (not relevant anymore)
(...)
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;
}
입력은 줄바꿈이나 공백(개수 상관 없음)으로 구분됨
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;
}
#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;
}
주석은 남용하면 좋지 않음
only to explain whys and how
not what
#include <iostream>
using namespace std;
int main() {
// 이것은 주석입니다.
// 슬래시 2개!
/*
여러 줄 주석
(/* */)
*/
return 0;
}