#include<bits/stdc++.h> using namespace std; int main(){ string s,s1,s2; for(int i=1000;i<10000;i++){ s1.clear();//循环开头记得清空字符串 s2.clear(); s = to_string(i);//把 int 转换成 string s1.push_back(s[0]); s1.push_back(s[1]); s2.push_back(s[2]); s2.push_back(s[3]); if((stoi(s1)+stoi(s2))*(stoi(s1)+stoi(s2))==i){//stoi()把 string 转换成 int cout << i << " "; } } return 0; }
0.0分
0 人评分
C语言训练-角谷猜想 (C语言代码)浏览:1768 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:732 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:910 |
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:942 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:512 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:648 |
DNA (C语言代码)浏览:564 |
a+b浏览:452 |
1124题解浏览:630 |