弟弟的作业(纯C++代码,不使用scanf) 摘要:解题思路:用while循环读取输入的算式,直到读取到空行,查找并记录运算符‘+’或者‘-’以及‘=’在字符串s中的位置,通过这两个位置,对字符串进行切片操作,最后进行判断。注意事项: 运用到了#inc…… 题解列表 2024年08月11日 0 点赞 0 评论 148 浏览 评分: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 评论 253 浏览 评分:9.9
弟弟的作业-题解(C++代码)简单正确的解 摘要:本题关键在于scanf函数的返回值scanf()函数返回值分为3种:(1)返回正整数。表示正确输入参数的个数。(2)返回整数0。表示用户的输入不匹配,无法正确输入任何值。(3)返回-1。表示输入流已经…… 题解列表 2023年03月12日 0 点赞 0 评论 78 浏览 评分:9.9
弟弟的作业 (C++代码) 摘要:解题思路:这是比较简单的代码#include <cstdio>#include <cstdlib>int main(){ int a,b,n; char c[5],d,e; int …… 题解列表 2017年08月29日 0 点赞 0 评论 1456 浏览 评分:9.9
C++简单粗暴解决弟弟作业问题 摘要:解题思路:直接将计算表达式当作字符串输入,读取出a,b,c的值。判断即可。在字符串中a的分界是+或者-;使用string中的find_first_of函数,找到第一个出现+、-的位置string各个函…… 题解列表 2024年03月16日 0 点赞 0 评论 121 浏览 评分:9.9
我AC的第一个难题 摘要:参考代码:#include<bits/stdc++.h>//100以内数的加减 using namespace std; bool jiancha(string s) { string…… 题解列表 2024年10月15日 0 点赞 0 评论 129 浏览 评分:9.9
弟弟的作业 摘要:```c #include int main() { int a,b,c,k,count=0; char x; while(~(k=scanf("%d%c%d=%d…… 题解列表 2022年08月17日 0 点赞 0 评论 483 浏览 评分:9.9
弟弟的作业 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Dome04 { public static void main(Stri…… 题解列表 2023年04月10日 0 点赞 0 评论 255 浏览 评分:9.9
优质题解只有stdio.h 摘要:解题思路:注意事项:参考代码:#includeint main() { char equation[10]; int correct = 0; while (scanf("%s", …… 题解列表 2023年11月07日 0 点赞 0 评论 154 浏览 评分:9.9
本菜鸡爬取大佬的思想 摘要:解题思路:利用c语言scanf语句的特殊方法,将输入的内容和预设置好的期望得到的内容进行匹配。k=scanf("%d%c%d=%d",&a,&x,&b,&c);当输入的内容为1+2=3时,scanf语…… 题解列表 2022年01月18日 0 点赞 0 评论 438 浏览 评分:9.9