题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ inta,b;&n…… 题解列表 2024年09月07日 0 点赞 0 评论 206 浏览 评分:9.9
题解 2764: 带余除法 摘要:##########################################a,b=map(int,input().split(""))print(int(a/b),end…… 题解列表 2024年07月04日 0 点赞 0 评论 122 浏览 评分:0.0
2764: 带余除法 摘要:解题思路: C语言中“/”是整除的运算符 “%”是取余的运算符注意事项:注意代码的规范性参考代码…… 题解列表 2024年02月26日 0 点赞 0 评论 588 浏览 评分:9.9
编写题解 2764: 带余除法 摘要:解题思路:注意事项:除数不能为0'//'为取整除,得到商的整数部分(向下取整)参考代码:a,b=map(int,input().split())whileb!=0:&a…… 题解列表 2024年02月23日 0 点赞 0 评论 241 浏览 评分:6.0
编写题解 2764: 带余除法 摘要:解题思路:编写题解2764:带余除法注意事项:参考代码:x,y=map(eval,input().split())print(x//y,x%y,sep="")…… 题解列表 2023年12月16日 0 点赞 0 评论 81 浏览 评分:0.0
题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ inta,b;&n…… 题解列表 2023年12月05日 0 点赞 0 评论 162 浏览 评分:9.9
题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ inta,b;&n…… 题解列表 2023年12月02日 0 点赞 0 评论 120 浏览 评分:9.9
编写题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ inta,b;&…… 题解列表 2023年11月27日 0 点赞 0 评论 171 浏览 评分:9.9
2764: 带余除法 摘要:解题思路:注意事项:cin不能用,参考代码:#include<iostream>usingnamespacestd;intmain(){ inta,b…… 题解列表 2023年11月12日 0 点赞 0 评论 107 浏览 评分:9.9
带余 高精度除低精度 摘要:#include<iostream>#include<string>#include<vector>#include<algorithm>&nb…… 题解列表 2023年07月25日 0 点赞 0 评论 112 浏览 评分:9.9