简单算术表达式求值(整点花活,三目运算符) 摘要:参考代码: ```c #include int main() { int a; char c; int b; scanf("%d%c%d",&a,&c,&b); int d…… 题解列表 2023年09月21日 0 点赞 0 评论 155 浏览 评分:0.0
题解 2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int yun(int x,int y,char z){ int d; if(z=='+') d=x+y; …… 题解列表 2024年05月07日 0 点赞 0 评论 171 浏览 评分:0.0
编写题解 2936: 简单算术表达式求值 摘要:```c #include int main() { int num_1,num_2; char ch; int result; int function(int num_1,i…… 题解列表 2024年05月27日 0 点赞 0 评论 293 浏览 评分:9.9
2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll jiafa (ll x,ll y,…… 题解列表 2024年06月30日 0 点赞 0 评论 109 浏览 评分:0.0
2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll jiafa (ll x,ll y,…… 题解列表 2024年06月30日 0 点赞 0 评论 184 浏览 评分:0.0
2936: 简单算术表达式求值 摘要:```cpp #include using namespace std; int js(int a,char c,int b){ if(c=='+') cout…… 题解列表 2024年07月25日 0 点赞 0 评论 203 浏览 评分:0.0