题解列表

筛选

c++三行题解

摘要:解题思路:使用强转输出数据注意事项:while的循环读入参考代码:#include<bits/stdc++.h> using namespace std; int main(){     int……

表达式括号匹配(stack)

摘要:解题思路: 运用栈的性质 ```cpp #include using namespace std; int main() { string s; getline(cin, s);//……