我正在尝试解决 Project Euler 问题 3,直到代码块或任何导致pissed
我失望的原因。这是我的代码,它有什么问题?我想更多的是一个错误?
#include <iostream>
using namespace std;
int main()
{
int x=0;
for(int y=0;y<=10;y++)
{
if(13195%x==0)
{
cout<<"I don't know why the program crashes!";
}
}
}