Код: Выделить всё
#include
#include
#include
int main(void)
{
std::vector result;
int64_t seed = 9564738543572813LL;
int64_t fact = 18465439963655325LL;
for (int i = 0; i < 100 ; i++)
{
seed = seed * fact ;
result.push_back(seed);
}
std::cout
Подробнее здесь: [url]https://stackoverflow.com/questions/78677101/arithmetic-error-caused-by-o3-option-on-g[/url]