C++/c++ - 알아두면 좋은 예제200
c++ 날짜와 시간을 문자열로 변환하기
c++ 날짜와 시간을 문자열로 변환하기
2020.10.27#define _CRT_SECURE_NO_WARNINGS #include #include using namespace std; int main(void) { time_t now = time(NULL); tm* ptm = localtime(&now); char buffer[64]; strftime(buffer, 64, "%Y년 %m월 %d일, %H시 %M분 %S초 입니다.(%p)\n", ptm); cout #define _CRT_SECURE_NO_WARNINGS
c++ 난수생성하기
c++ 난수생성하기
2020.10.26#include #include using namespace std; int main() { srand(static_cast(time(NULL))); for (int i = 0; i < 5; i++) cout
c++ 소수점 분리하기(modf)
c++ 소수점 분리하기(modf)
2020.10.26#include using namespace std; int main() { double x = 1.2345; double div = 0.0; double mod; mod = modf(x, &div); cout
c++ 제곱근(sqrt)구하기
c++ 제곱근(sqrt)구하기
2020.10.26#include using namespace std; int main() { cout
c++ 절대값(abs)과 제곱수(pow)구하기
c++ 절대값(abs)과 제곱수(pow)구하기
2020.10.26#include using namespace std; int main() { cout
c++ 실수 소수점 버리기 올리기(floor, ceil)
c++ 실수 소수점 버리기 올리기(floor, ceil)
2020.10.26#include using namespace std; int main() { cout
c++ 반복문을 이용한 피보나치 수열
c++ 반복문을 이용한 피보나치 수열
2020.10.26#include using namespace std; int main() { int p(0); int n(0); int t(0); for (int i = 1; i < 10; i++) { p = 0; n = 1; for (int j = 1; j
c++ 자료형의 크기(size of)
c++ 자료형의 크기(size of)
2020.10.26#include using namespace std; class Temp { int no; bool is_on; }; int main() { cout
c++ 캐스트 연산자
c++ 캐스트 연산자
2020.10.25#include using namespace std; int main() { int x = 2; double y = 4.4; int i = static_cast(y / x); int j = int(y) / x; double k = y / x; cout
c++ 비트 연산자 이해하기
c++ 비트 연산자 이해하기
2020.10.25#include #include using namespace std; int main() { bitset bit1; bit1.reset(); // 0000 0000 bit1 = 127; // 0111 1111 bitset bit2; bit2.reset(); bit2 = 0x20; // 32 bitset bit3 = bit1 & bit2; bitset bit4 = bit1 | bit2; bitset bit5 = bit1 ^ bit2; bitset bit6 = ~bit1; bitset bit7 = bit2 > 1; cout
c++ 조건부 삼항 연산자 이해하기(? :)
c++ 조건부 삼항 연산자 이해하기(? :)
2020.10.25#include using namespace std; int main() { int x(1), y(2), z(0); z = x > y ? x : y; cout y 조건이 true 이기 때문에 x 값을 z에 할당합니다. 만약 조건이 맞지 않는다면 false 에 해당하는 y 값이 z 에 할당됩니다.
c++ 문자열형 변수 이해하기(string)
c++ 문자열형 변수 이해하기(string)
2020.10.25#include #include using namespace std; int main() { string my_country = "korea"; string my_job = "developer"; cout