简单算术表达式求值(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
自定义函数求值 摘要:解题思路:注意事项:参考代码:#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
简单算数表达式求值(switch做法,C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int num1,num2; char ch; scanf…… 题解列表 2023年02月01日 0 点赞 1 评论 521 浏览 评分:8.7
自定义函数-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
编写题解 2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a,b; char c; scanf("%d",&…… 题解列表 2022年11月12日 0 点赞 1 评论 555 浏览 评分:9.9
2936: 简单算术表达式求值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>int main(){ …… 题解列表 2022年11月07日 0 点赞 0 评论 359 浏览 评分:2.0