2936: 简单算术表达式求值 摘要:```cpp #include using namespace std; int js(int a,char c,int b){ if(c=='+') cout…… 题解列表 2024年07月25日 0 点赞 0 评论 202 浏览 评分:0.0
简单算术表达式求值(C++) 摘要: #include using namespace std; int main() { int a,b; char ch; …… 题解列表 2023年03月03日 0 点赞 0 评论 182 浏览 评分:0.0
简单算术表达式求值(整点花活,三目运算符) 摘要:参考代码: ```c #include int main() { int a; char c; int b; scanf("%d%c%d",&a,&c,&b); int d…… 题解列表 2023年09月21日 0 点赞 0 评论 154 浏览 评分: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 评论 183 浏览 评分:0.0
构建函数表达算数表达式的值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void jia(int a,int b){ int add=0; add=a+b; printf("%d",add);}void …… 题解列表 2023年04月08日 0 点赞 0 评论 159 浏览 评分: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