#include<iostream> #include<stack> #include<string> #include<cctype> #include<sstream> using namespace std; stack< long long >sk; string str; stringstream tempIO; long long Calculate( long a, long b, char op) { switch( op ) { case '+': return a + b; case '-': return a - b; case '*': return a * b; case '/': return a / b; } } int main() { getline( cin,str ); for(int i=0; str[i]!='@'; i++){ if( isdigit(str[i] ) ){ tempIO << str[i]; }else if(str[i]==' '){ long long = 0; tempIO >> num; sk.push( num ); tempIO.clear(); } else { long long t1= sk.top(); sk.pop(); long long t2 = sk.top(); sk.pop(); sk.push( Calculate( t2, t1, str[i] )); } } cout << sk.top() << endl; return 0; }
时间: 2024-02-14 13:30:08 浏览: 37
在您提供的代码中,有一个问题需要注意:
```cpp
else if(str[i]==' '){
long long = 0;
tempIO >> num;
sk.push( num );
tempIO.clear();
}
```
在这段代码中,您定义了一个名为 `long long` 的变量,但是没有为其指定一个变量名。这会导致编译错误。您需要为该变量指定一个名称,例如:
```cpp
else if(str[i]==' '){
long long num = 0; // 给变量指定一个名称,例如 num
tempIO >> num;
sk.push( num );
tempIO.clear();
}
```
修复此问题后,您的代码应该可以正常编译和运行了。
相关问题
#include<bits/stdc++.h>包含哪些头文件
这个头文件包含了所有标准的 C++ 库头文件,包括一些常用的输入输出、字符串处理、数学计算、文件操作等功能的头文件。具体包含的头文件如下:
- iostream:输入输出流
- sstream:字符串流
- cmath:数学函数
- cstdio:输入输出流
- cstdlib:标准库函数
- cctype:字符处理函数
- string:字符串相关
- algorithm:算法相关
- vector:向量相关
- queue:队列相关
- stack:栈相关
- deque:双端队列相关
- list:链表相关
- set:集合相关
- map:映射相关
- unordered_set:无序集合相关
- unordered_map:无序映射相关
- functional:函数对象相关
- iterator:迭代器相关
- utility:工具函数相关
foo.cc: In function 'int main()': foo.cc:32:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare] 32 | for (int i = 0; i < line.length(); i++) { | ~~^~~~~~~~~~~~~~~ foo.cc: In function 'long long int Calculate(long long int, long long int, char)': foo.cc:25:1: warning: control reaches end of non-void function [-Wreturn-type] 25 | } | ^
根据编译器的警告信息,您的代码中存在两个问题:
1. 在 `main()` 函数中,编译器发出了一个警告:“comparison of integer expressions of different signedness”。这是因为您在 `for` 循环中使用了不同类型的比较。`line.length()` 的返回类型是 `std::string` 的大小类型,通常是 `size_t` 或 `std::string::size_type`,这是一个无符号整数类型。而循环变量 `i` 是 `int` 类型,是有符号整数类型。为了消除这个警告,您可以将 `i` 的类型更改为与 `line.length()` 返回类型匹配的类型,例如 `std::string::size_type` 或 `size_t`。
2. 在 `Calculate()` 函数中,编译器发出了一个警告:“control reaches end of non-void function”。这是因为您的函数声明返回类型为 `long long int`,但没有在函数体中的所有分支都返回一个值。为了解决这个警告,您可以在函数的最后添加一个默认的返回语句。
修复上述问题后,您的代码应该可以成功编译和运行了。以下是修复后的代码示例:
```cpp
#include <iostream>
#include <stack>
#include <string>
#include <cctype>
#include <sstream>
using namespace std;
stack<long long> sk;
string str;
stringstream tempIO;
long long Calculate(long long a, long long b, char op)
{
switch (op)
{
case '+': return a + b;
case '-': return a - b;
case '*': return a * b;
case '/': return a / b;
}
// 添加默认返回语句
return 0;
}
int main()
{
string line;
while (getline(cin, line))
{
for (std::string::size_type i = 0; i < line.length(); i++)
{
if (isdigit(line[i]))
{
tempIO << line[i];
}
else if (line[i] == ' ')
{
long long num = 0;
tempIO >> num;
sk.push(num);
tempIO.clear();
tempIO.str("");
}
else
{
long long t1 = sk.top();
sk.pop();
long long t2 = sk.top();
sk.pop();
sk.push(Calculate(t2, t1, line[i]));
}
}
cout << sk.top() << endl;
sk.pop();
}
return 0;
}
```
在这个修复后的代码中,我将 `i` 的类型更改为 `std::string::size_type`,并添加了默认的返回语句以解决警告。
阅读全文