在spyder python软件上,每当我保存代码时,我都会失去键入ipython的能力。 新用户在这里,不确定这是否只是一些怪异的设置,但是我在我的任何一台大学计算机上都没有遇到这个问题,只有在我的笔记本电脑上才遇到这个问题。
我已经卸载并重新安装了蟒蛇,但同样的问题仍然存在。
如您在第二张图片中所见,我失去了在控制台中键入的能力。我该如何解决?
编辑:
代码
#include <iostream>
using namespace std;
int main()
{
int num1, num2, sum=0;
cout << "Input first number : ";
cin >> num1;
cout << "Input second number : ";
cin >> num2;
for(int i = num1 + 1;i<num2;i++)
{
if ( num1 % 4 == 0 && num2 % 6 == 0)
{
sum = sum + i;
}
}
cout<< "The sum of all integers that are both divisible by 4 and 6 between " << num1 << " and " << num2 << " is " << sum << endl;
system("pause");
return 0;
}