2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>int main(){ …… 题解列表 2022年11月07日 0 点赞 0 评论 359 浏览 评分:2.0
编写题解 2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a,b; char c; scanf("%d",&…… 题解列表 2022年11月12日 0 点赞 1 评论 555 浏览 评分: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
简单算数表达式求值(switch做法,C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int num1,num2; char ch; scanf…… 题解列表 2023年02月01日 0 点赞 1 评论 521 浏览 评分:8.7
自定义函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int js(int a,int b,char c){ if(c=='+')return a+b; if(c…… 题解列表 2023年02月13日 0 点赞 0 评论 197 浏览 评分:9.9
简单算术表达式求值(C语言) 摘要:#include<stdio.h> void my_fun(int x,char v, int y) { if(v=='+') { printf("%d\n", x …… 题解列表 2023年02月13日 0 点赞 0 评论 345 浏览 评分:8.0
简单算术表达式求值(C++) 摘要: #include using namespace std; int main() { int a,b; char ch; …… 题解列表 2023年03月03日 0 点赞 0 评论 182 浏览 评分: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
简单算数表达式Java(正则表达式) 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scan…… 题解列表 2023年06月08日 0 点赞 0 评论 253 浏览 评分: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