带余除法(C++解法) 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ inta,b;&n…… 题解列表 2023年06月03日 0 点赞 0 评论 98 浏览 评分:0.0
编写题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b; &…… 题解列表 2023年03月24日 0 点赞 0 评论 142 浏览 评分:0.0
算术表达式与顺序执行--4.带余除法 摘要:参考代码:#include<stdio.h>intmain(){ inta,b; scanf("%d%…… 题解列表 2023年03月23日 0 点赞 0 评论 63 浏览 评分:0.0
编写题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b; scanf…… 题解列表 2023年06月10日 0 点赞 0 评论 103 浏览 评分:0.0
题解 2764: 带余除法 摘要:##########################################a,b=map(int,input().split(""))print(int(a/b),end…… 题解列表 2024年07月04日 0 点赞 0 评论 122 浏览 评分:0.0
带余除法(超简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b; scanf…… 题解列表 2022年12月30日 0 点赞 0 评论 176 浏览 评分:0.0
题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta=0;intb=0;scanf("%d%d\n",&a,&b…… 题解列表 2023年02月27日 0 点赞 0 评论 102 浏览 评分:0.0
编写题解 2764: 带余除法 摘要:解题思路:编写题解2764:带余除法注意事项:参考代码:x,y=map(eval,input().split())print(x//y,x%y,sep="")…… 题解列表 2023年12月16日 0 点赞 0 评论 81 浏览 评分:0.0
编写题解 2764: 带余除法 摘要:解题思路:注意事项:除数不能为0'//'为取整除,得到商的整数部分(向下取整)参考代码:a,b=map(int,input().split())whileb!=0:&a…… 题解列表 2024年02月23日 0 点赞 0 评论 240 浏览 评分:6.0
2764: 带余除法 摘要:解题思路:分开算除和余。注意事项:无参考代码:#include<iostream>using namespace std;int ma…… 题解列表 2022年10月22日 0 点赞 0 评论 321 浏览 评分:6.0