简单算数表达式Java(正则表达式) 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scan…… 题解列表 2023年06月08日 0 点赞 0 评论 254 浏览 评分:9.9
编写题解 2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a,b; char c; scanf("%d",&…… 题解列表 2022年11月12日 0 点赞 1 评论 556 浏览 评分:9.9
编写题解 2936: 简单算术表达式求值(C++) 摘要:解题思路:使用switch参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char ch; int a,b; …… 题解列表 2023年06月10日 0 点赞 0 评论 246 浏览 评分:9.9
自定义函数-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int add(int x,char i, int y); int main() { int x,y; x …… 题解列表 2022年11月28日 0 点赞 1 评论 377 浏览 评分:9.9
自定义函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int js(int a,int b,char c){ if(c=='+')return a+b; if(c…… 题解列表 2023年02月13日 0 点赞 0 评论 198 浏览 评分:9.9
编写题解 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