我雖然AC但有人可以告訴我,我寫
#include <iostream>
using namespace std;
int main() {
cout << pow(2, 31)-1 << " " << pow(2, 31)-1 << "\n";
return 0;
}
為什麼會錯......
我雖然AC但有人可以告訴我,我寫
#include <iostream>
#include <cmath>
using namespace std;
int main() {
cout << pow(2, 31) - 1 << " " << pow(2, 31) - 1 << "\n";
return 0;
}
為什麼會錯......