1480-普普通通的解题方法 摘要:解题思路:注意事项:用scanf写输入格式时,如果只想写一行,注意两个%d之后加一个空格再接%c。参考代码:#include<stdio.h>intch(charc){if(c==&…… 题解列表 2024年11月23日 0 点赞 0 评论 70 浏览 评分:0.0
1480 模拟计算器 初学者一定能懂 摘要:解题思路:用强制转换把ch转换成int类型注意事项:需要理解强制转换的定义,括号里面的是需要转换到的数据类型。e.g #i…… 题解列表 2024年11月17日 0 点赞 0 评论 120 浏览 评分:9.9
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b; charc…… 题解列表 2024年11月12日 0 点赞 0 评论 40 浏览 评分:0.0
模拟计算器 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b;char w;scanf(&qu…… 题解列表 2024年08月06日 0 点赞 0 评论 89 浏览 评分:0.0
模拟计算器(if else) 摘要:解题思路:注意事项:参考代码:l=input().split()a=int(l[0])b=int(l[1])ifl[2]=='+': &nbs…… 题解列表 2024年07月28日 0 点赞 0 评论 50 浏览 评分:0.0
1480: 模拟计算器(两种解法) 摘要:解题思路:注意事项:参考代码:Scanner sc=new Scanner(System.in);String str =&am…… 题解列表 2024年04月05日 0 点赞 0 评论 141 浏览 评分:9.9
除法加一个int()即可 摘要:解题思路:注意事项:除法的要求好像是取整,所以加一个int(a/b)就可以了参考代码:A,B,c=input().split()a=int(A)b=int(B)ifc=="+":&…… 题解列表 2024年03月31日 0 点赞 0 评论 122 浏览 评分:0.0
1480: 模拟计算器 摘要:#1480 此题干描述有点小问题,题目描述是除法/,测试用例用的是整除//listA=[]whileTrue:try: listA=input(…… 题解列表 2024年03月25日 0 点赞 0 评论 101 浏览 评分:0.0
python编写题解 1480: 模拟计算器 摘要:注意事项:商是整除while True: try: &nb…… 题解列表 2024年03月07日 0 点赞 0 评论 84 浏览 评分:0.0
模拟计算器 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ inta,b;&n…… 题解列表 2024年02月05日 0 点赞 0 评论 78 浏览 评分:0.0