编写题解 1073: 弟弟的作业 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h> //atio函数,将字符串转换为数字.#include<string.h> …… 题解列表 2024年12月07日 3 点赞 0 评论 625 浏览 评分:10.0
弟弟的作业-题解(C语言代码)atoi函数的应用 摘要:注意atoi函数的使用 可以将字符串转化为整形数 #include #include int add(int a,int b) { return a…… 题解列表 2019年11月17日 0 点赞 0 评论 1241 浏览 评分:9.9
弟弟的作业(我还行的!C语言代码) 摘要:### 题目分析 ####1.格式为a+b=c; ####2.a、b为纯数字,c可能为‘?’字符; ####3.运算符有 ‘+’ & ‘-’. ###解题思路(本题解的解题思路) #…… 题解列表 2020年01月06日 1 点赞 0 评论 1372 浏览 评分:9.9
弟弟的作业 摘要:解题思路:利用scanf的返回值来结果。注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,k; char op; int sum=0;…… 题解列表 2023年05月10日 0 点赞 0 评论 244 浏览 评分:9.9
弟弟的作业-题解(C语言代码) 摘要:题目: 你的弟弟刚做完了“100以内数的加减法”这部分的作业,请你帮他检查一下。每道题目(包括弟弟的答案)的格式为a+b=c或者a-b=c,其中a和b是作业中给出的,均为不超过100的非负整数;c是…… 题解列表 2020年03月04日 0 点赞 0 评论 1250 浏览 评分:9.9
优质题解只有stdio.h 摘要:解题思路:注意事项:参考代码:#includeint main() { char equation[10]; int correct = 0; while (scanf("%s", …… 题解列表 2023年11月07日 0 点赞 0 评论 244 浏览 评分:9.9
编写题解 1073: 弟弟的作业 摘要:#include<iostream>using namespace std;int main(){ string st;int a=0,b=0,c=0;bool k=false,f=false;…… 题解列表 2022年07月31日 0 点赞 0 评论 324 浏览 评分:9.9
弟弟的作业 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c=10; int sum=0; int a=0,b=0,d=0,t,k=0,i=0…… 题解列表 2023年04月29日 0 点赞 0 评论 203 浏览 评分:9.9
弟弟的作业-题解(Java代码) 摘要: ```java package Test; import java.util.Scanner; //作者:唐海涛!! public class test { public s…… 题解列表 2020年06月12日 0 点赞 0 评论 1078 浏览 评分:9.9
弟弟的作业-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b,c,i=0; char sum; while(scanf("%…… 题解列表 2020年11月06日 0 点赞 1 评论 1072 浏览 评分:9.9