分类讨论注意初始参数还原为0 摘要:解题思路:利用while循环实现持续输入,在有题目条件写出判断式子注意事项:参考代码:while True: n=int(input()) if n==0: break …… 题解列表 2022年04月01日 0 点赞 0 评论 123 浏览 评分:0.0
数字整除-题解(C语言代码) 摘要:解题思路:1.定义一个字符来数组存放输入数据 2.输入 3.判断是否为17的倍数 &n 题解列表 2021年01月27日 0 点赞 0 评论 404 浏览 评分:0.0
请各位大神帮我看看哪里错咯 谢谢了 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { unsigned long long a[40]; int i,n,g,y; for(i=…… 题解列表 2022年05月11日 0 点赞 0 评论 111 浏览 评分:0.0
数字整除-题解(C++代码) 摘要:##大数求余 ```cpp #include using namespace std; int main() { int x=0; char ch; scanf("%c",&ch…… 题解列表 2020年01月17日 0 点赞 0 评论 355 浏览 评分:0.0
转化为字符数组 摘要:#include<stdio.h>#include<stdio.h>#include<ctype.h>#include<string.h>int main(){ char num[110],ge…… 题解列表 2017年07月24日 0 点赞 0 评论 956 浏览 评分:0.0
来自大佬的帮助 摘要: #include int main() { int x = 0; char ch; scanf("%c", &ch);…… 题解列表 2019年09月28日 0 点赞 0 评论 483 浏览 评分:0.0
1074: 数字整除 - Python 摘要:解题思路: 1、将输出的字符作为string类型,不转变为int. 2、将输入的数字(string类型)利用list()转变为数组,利用切片得到对应的数组。 3、将数组转为int,进…… 题解列表 2023年10月24日 0 点赞 0 评论 64 浏览 评分:0.0
AC-题解1074:数字整除 (C语言代码) 摘要:解题思路:该题的关键在于从字符串末尾迭代到只剩最开头3位,如果最终运算结果被17整除,则输出1以str="31041231"为例,最开始时计算23-1*5,最末尾计算str[0]~str[3]注意事项…… 题解列表 2019年04月01日 1 点赞 0 评论 550 浏览 评分:0.0
数字整除 (C++代码) 摘要:解题思路: 用string存储数字,选取最后两位来构造整数,因为整数减法后面的数字不变,仅仅改变最后三位数字而已,注意事项:参考代码:代码一:#include<iostream> using na…… 题解列表 2019年02月26日 0 点赞 0 评论 506 浏览 评分:0.0
数字整除 (C语言代码) 摘要:解题思路:思路之后补上注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char chars[110]; int former=0,si…… 题解列表 2018年09月19日 0 点赞 0 评论 660 浏览 评分:0.0