-
1 2 3 4 5 6 7 8 9 10 11 12 13 #include using namespace std; int main() { unsigned long long a = pow(10ULL, 15); unsigned long long b = 8999999999999997; cout
c++ 랑 다른 중요한 차이점임
억까조심 long long 은 10^18 넘어가면 스택오버플로우!!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0), cout.tie(0); int a = 0; // 다음은 0이 출력 됨 cout
참교육 조심