2936: 简单算术表达式求值 摘要:```cpp #include using namespace std; int js(int a,char c,int b){ if(c=='+') cout…… 题解列表 2024年07月25日 0 点赞 0 评论 193 浏览 评分: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 评论 181 浏览 评分: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 评论 107 浏览 评分: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 评论 282 浏览 评分:9.9
题解 2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int yun(int x,int y,char z){ int d; if(z=='+') d=x+y; …… 题解列表 2024年05月07日 0 点赞 0 评论 168 浏览 评分: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 评论 152 浏览 评分:0.0
编写题解 2936: 简单算术表达式求值(C++) 摘要:解题思路:使用switch参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char ch; int a,b; …… 题解列表 2023年06月10日 0 点赞 0 评论 242 浏览 评分:9.9
简单算数表达式Java(正则表达式) 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scan…… 题解列表 2023年06月08日 0 点赞 0 评论 250 浏览 评分:9.9
构建函数表达算数表达式的值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void jia(int a,int b){ int add=0; add=a+b; printf("%d",add);}void …… 题解列表 2023年04月08日 0 点赞 0 评论 156 浏览 评分:0.0
简单算术表达式求值(C++) 摘要: #include using namespace std; int main() { int a,b; char ch; …… 题解列表 2023年03月03日 0 点赞 0 评论 180 浏览 评分:0.0