C语言训练-自守数问题 (C语言代码)
摘要:解题思路:笨办法,判断多个可能条件就好注意事项:注意if里的括号别弄错了参考代码:#include<stdio.h>
void pand();
int main()
{
pand();
……
你没有见过的全新方法
摘要:/* 思路
(625-25)%100==0
(5776-76)%100==0
(87909376-9376)%10000==0
(平方-自然数)%pow(10,n)==0 n 为自然数位数
……
编写题解 1144: C语言训练-自守数问题,最简单判断:字符字尾连接判断函数(endswith())
摘要:ls = []for n in range(200000): if str(n**2).endswith(str(n)): ls.append(n)for i in range(l……
编写题解 1144: C语言训练-自守数问题
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>using namespace std;int main(){ long long int i,……
C语言训练-自守数问题 (C语言代码)
摘要:解题思路:对于每一个数i,先想办法求出它的位数 digit 。然后算出 (i^2-i)的值,如果它对 (int) pow(10, digit) 求余数为0,那么 i 就是自守数,把它输出。注意事项:1……
C语言训练-自守数问题-题解(C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int zishoushu(int i){ long int g=i,count=0,k,c=0; ……
1144: C语言训练-自守数问题(最长答案)
摘要:解题思路:题目要求:200000以内的自守数(包括0, 数之间用两个空格分开,末尾无空格) 首先求出最后一个自守数,并赋值给a;之后从小到大依次判断0-200000之间的自守数;当自守数不等于a时,及……
C语言训练-自守数问题 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<cmath>……