弟弟的作业 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[20]; int answer=0; while(scanf("%s",&…… 题解列表 2018年04月12日 0 点赞 0 评论 518 浏览 评分:0.0
弟弟的作业-题解(C++代码) 摘要:#### 原题链接:[弟弟的作业](https://www.dotcpp.com/oj/problem1073.html "弟弟的作业") #### 解题思路: **能看到这个题目很幸运,…… 题解列表 2019年08月08日 0 点赞 0 评论 504 浏览 评分:0.0
弟弟的作业-题解(C语言代码) 摘要:**第一次写这种程度的题,自己搞了一下午,希望自己走过的弯路能够帮助你们** **解题思路很重要,借鉴的其他人的思路!!!!** 1. 以文件结束符结尾,EOF何时结束 输入ctrl+c结束 …… 题解列表 2019年10月07日 0 点赞 1 评论 422 浏览 评分:0.0
弟弟的作业 (C语言代码) 摘要:#include "stdafx.h" //自己运行是正确的,但是验证不通过#include "string.h" &nb 题解列表 2018年10月31日 0 点赞 0 评论 379 浏览 评分:0.0
1073弟弟的作业(scanf函数的粗略解读) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int sum=0; char fuhao; //scanf函数是有返回值的 //返回 -…… 题解列表 2024年05月27日 0 点赞 0 评论 105 浏览 评分:0.0
弟弟的作业-题解(C语言代码) 摘要:```c #include int main(){ int sum=0,a,b,e;; char ch; while(~scanf("%d%c%d=%d",&a,&ch,&b,&e))…… 题解列表 2020年04月14日 0 点赞 0 评论 268 浏览 评分:0.0
弟弟的作业 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char s[100];int count ;int main(){ int i,j,k,sum; …… 题解列表 2018年02月08日 0 点赞 0 评论 780 浏览 评分:0.0
弟弟的作业 (C语言代码) 摘要:解题思路:将两个答案进行比较就行了注意事项:循环输入的条件控制,以及正确答案的判断条件参考代码:#include<stdio.h>#include<string.h>int main(){ int a…… 题解列表 2018年04月27日 0 点赞 0 评论 484 浏览 评分:0.0
1073: 弟弟的作业 摘要:```python score = 0 while True: try: user = input().split("=") if user[1] =…… 题解列表 2023年12月20日 0 点赞 0 评论 82 浏览 评分:0.0
弟弟的作业-题解(Java代码) 摘要:这题没怎么利用题目的便利,就老实的把数字慢慢取出计算就行。 慢慢看,挺通俗易懂的. ```java import java.util.Scanner; public class M…… 题解列表 2020年01月31日 0 点赞 0 评论 444 浏览 评分:0.0