本来以为很难,后来发现也就是循环加判断 摘要:解题思路:注意事项:参考代码:for i in range(0,10): p=i**2 if p%10==i: print(i,end=' ')for i …… 题解列表 2022年06月01日 0 点赞 1 评论 154 浏览 评分:9.9
题解 1144:自守数问题(C代码) 摘要:解题思路:注意事项:参考代码:#include<math.h>int Number(int i,int count);int main(){ long long sum; for (int…… 题解列表 2022年06月23日 0 点赞 0 评论 208 浏览 评分:9.9
111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long n=0; for(long long i=0;i<=200000;i++) { n…… 题解列表 2022年08月05日 0 点赞 0 评论 755 浏览 评分:0.0
题解 1144: C语言训练-自守数问题(C) 摘要:注意事项:注意是两个空格分开~参考代码:#include<stdio.h> #include<string.h> int main(void){ int j=0; long long …… 题解列表 2022年08月29日 0 点赞 0 评论 83 浏览 评分:0.0
1144: C语言训练-自守数问题 摘要:方法一: ```cpp #include using namespace std; int main() { for(long long i=0;i…… 题解列表 2022年10月15日 0 点赞 0 评论 348 浏览 评分:9.9
自守数问题(C++) 摘要:解题思路:注意事项:int存不下,用long,题目要求两个空格隔开参考代码:using namespace std; #include<iostream> int main() { c…… 题解列表 2022年10月28日 1 点赞 0 评论 225 浏览 评分:9.9
新手上路,通俗易懂,就是麻烦 摘要:# MarkDown编辑器基本使用说明 #include #include int main() { long long n, a, c, d, e, f; long long …… 题解列表 2022年11月03日 0 点赞 0 评论 107 浏览 评分:0.0
自守数问题之满满的套路(格式+数据范围) 摘要:解题思路: 题前小磕:这一题真是满满的套路啊,足足被卡了半个多小时,第一次错误是答案少了两个;第二次是格式错误。但我好不容易AC了这一题,我必须写个题解给大家避避坑。 …… 题解列表 2022年11月19日 0 点赞 0 评论 121 浏览 评分:0.0
C语言训练-自守数问题 摘要:解题思路:首先判断自然数和其平方数同时除10得到的余数是否相同,如果相同,循环将两个数除以10后判断余数是否相同(依次比较高位)。注意事项:自然数的数据类型用long long。参考代码:#inclu…… 题解列表 2022年12月08日 0 点赞 0 评论 119 浏览 评分:0.0
1144一行解(Python) 摘要:解题思路:掌握lambda写法注意事项:注意结构的顺序,不建议解题这样书写参考代码:print((' '.join(n for n in list(map(lambda x : &#…… 题解列表 2022年12月24日 0 点赞 0 评论 143 浏览 评分:9.0