将下列c++代码转换为Python代码
时间: 2024-03-05 11:54:01 浏览: 260
C++ to Python converter.zip
以下是相应的Python代码:
```python
#include <iostream>
using namespace std;
int main()
{
int a, b, c;
cout << "Enter two numbers to add\n";
cin >> a >> b;
c = a + b;
cout <<"Sum of entered numbers = " << c << endl;
return 0;
}
```
Python代码:
```python
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
c = a + b
print("Sum of entered numbers = ", c)
```
请注意,Python中没有像C++中的`using namespace std;`这样的语句,并且Python中不需要使用分号来表示语句的结束。此外,Python中使用`input()`函数来获取用户输入,而不是使用`cin`。
阅读全文