编写题解 1073: 弟弟的作业 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h> //atio函数,将字符串转换为数字.#include<string.h> …… 题解列表 2024年12月07日 1 点赞 0 评论 197 浏览 评分:10.0
弟弟的作业-题解(C语言代码)atoi函数的应用 摘要:注意atoi函数的使用 可以将字符串转化为整形数 #include #include int add(int a,int b) { return a…… 题解列表 2019年11月17日 0 点赞 0 评论 994 浏览 评分:9.9
弟弟的作业(我还行的!C语言代码) 摘要:### 题目分析 ####1.格式为a+b=c; ####2.a、b为纯数字,c可能为‘?’字符; ####3.运算符有 ‘+’ & ‘-’. ###解题思路(本题解的解题思路) #…… 题解列表 2020年01月06日 0 点赞 0 评论 1155 浏览 评分:9.9
弟弟的作业(C++) 摘要:**解题思路:** 算式答案可能为 字符 "?" ,也可能是数字,所以在进行正确判断前,要将字符型转化为整型 运用库函数 atoi(s.s_str()),可以将字符串(string或者char[]…… 题解列表 2022年02月19日 0 点赞 1 评论 296 浏览 评分:9.9
我看没有人用结构体数组解,那我就写了一个(C语言) 摘要:1)**常规解法** 我真的服了,第一次我是用这个方法,结果只过了50%,说是时间超限,找了半天实在不知道哪有问题,我就想着那就用结构体数组,用空间换时间。结构体数组过了,然后我看题解,发现大家都用…… 题解列表 2024年08月12日 0 点赞 0 评论 162 浏览 评分:9.9
弟弟的作业 (C++代码)简短易理解 摘要:```cpp #include using namespace std; int main() { int sum1; sum1 = 0; int num1, num2; c…… 题解列表 2021年06月07日 0 点赞 0 评论 775 浏览 评分:9.9
逆天解法,包得吃的。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d=0; char ch; while(~scanf("%d",&a)) { ch=(ge…… 题解列表 2024年10月24日 1 点赞 0 评论 231 浏览 评分: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 评论 246 浏览 评分:9.9
弟弟的作业-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b,c,i=0; char sum; while(scanf("%…… 题解列表 2020年11月06日 0 点赞 1 评论 909 浏览 评分:9.9