C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:通过for循环将每种情况写下参考代码:#include<stdio.h> int main(){ int m,n,k,j; for(m=1000;m<10000;m++){ n=m%1…… 题解列表 2021年10月16日 0 点赞 0 评论 293 浏览 评分:6.0
一个非常非常简短的逗比题解 摘要:解题思路:看样例输出注意事项:无参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){ cout<<"2…… 题解列表 2021年12月08日 0 点赞 0 评论 207 浏览 评分:6.0
C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:解题思路:注意事项:参考代码:ls = []for i in map(str,range(999,10000)): if (int(i[:2])+int(i[2:]))**2 == int(i)…… 题解列表 2021年12月15日 0 点赞 0 评论 158 浏览 评分:0.0
1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s,s1,s2; for(int i=10…… 题解列表 2021年12月17日 0 点赞 0 评论 208 浏览 评分:0.0
1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n=1000,m,k;void fun1(){ while(n>=1000&&n<=9999) { m…… 题解列表 2022年01月25日 0 点赞 0 评论 159 浏览 评分:0.0
Hifipsysta-1136题-C语言训练-求具有abcd=(ab+cd)2性质的四位数(C++代码)字符串转换法 摘要: ```cpp #include #include #include using namespace std; bool is_condition(int n){ strin…… 题解列表 2022年01月31日 0 点赞 0 评论 121 浏览 评分:0.0
C语言训练-求具有abcd=(ab+cd)2性质的四位数(三行代码搞定) 摘要:for i in range(1000,10000): if (i%100+i//100)*(i%100+i//100)==i: print(i,end=' …… 题解列表 2022年02月09日 0 点赞 0 评论 228 浏览 评分:9.9
题解 1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n=1000; int i,j,sum; for(;n<10000…… 题解列表 2022年02月23日 0 点赞 0 评论 103 浏览 评分:0.0
编写题解 1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>#include<math.h>using namespace …… 题解列表 2022年03月21日 0 点赞 0 评论 286 浏览 评分:0.0
C语言训练-求具有abcd=(ab+cd)2性质的四位数(python版) 摘要:解题思路:注意事项:参考代码:for i in range(1000,10000): #遍历四位数 a = i//100 #分离出千位和百位 b = i % 100 #分离出十位…… 题解列表 2022年04月08日 0 点赞 0 评论 324 浏览 评分:0.0