博客
关于我
C/C++_log2000_完美立方
阅读量:102 次
发布时间:2019-02-25

本文共 2060 字,大约阅读时间需要 6 分钟。

/*----------------------------------------------------------------
@copyright
content:a^3=b^3+c^3+d^3;
1
<=N;
b<=c<=d;
input:N(N<=100);
output:Cube=a, Triple=(b,c,d);
if the result contains more than one 'a',
then first print the answer with smaller 'b', etc.
author:szetrov
//----------------------------------------------------------------*)
/*----------------------------------------------------------------*
*---------------------version 1.0----------------------------------
#include
using namespace std;
int main() {
int a=0,b=0,c=0,d=0;
int N=0;
cin >> N;
for(a=2; a<=N; a++) {
for(d=2; d<=N; d++) {
for(c=2; c<=d; c++) {
for(b=2; b<=c; b++) {
if((a*a*a) == ((b*b*b)+(c*c*c)+(d*d*d))
cout << "Cube=" << a << ", Triple=(" << b << "," << c << "," << d << ")";
}
}
}
}
}
}
*----------------------------------------------------------------*
/*----------------------------------------------------------------*
*---------------------version 2.0----------------------------------
improvement:shorten the range and change inner loop order from a-d-c-b to a-b-c-d;
#include
using namespace std;
int main() {
int a=0,b=0,c=0,d=0;
int N=0;
cin >> N;
for(a=2; a<=N; a++) {
for(b=2; b<=a-1; b++) {
for(c=b; c<=a-1; c++) {
for(d=c; d<=a-1; d++) {
if((a*a*a) == ((b*b*b)+(c*c*c)+(d*d*d))
cout << "Cube=" << a << ", Triple=(" << b << "," << c << "," << d << ")";
}
}
}
}
}
*----------------------------------------------------------------*

??????????????????????????1.0?????????????a?b?c?d??????????a? = b? + c? + d?????

??2.0????????????????????????a?b??c??d??????????????????????????????

???????????????????????????????????????????????????

转载地址:http://nkv.baihongyu.com/

你可能感兴趣的文章
No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
查看>>
No new migrations found. Your system is up-to-date.
查看>>
No qualifying bean of type XXX found for dependency XXX.
查看>>
No qualifying bean of type ‘com.netflix.discovery.AbstractDiscoveryClientOptionalArgs<?>‘ available
查看>>
No resource identifier found for attribute 'srcCompat' in package的解决办法
查看>>
no session found for current thread
查看>>
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
查看>>
NO.23 ZenTaoPHP目录结构
查看>>
no1
查看>>
NO32 网络层次及OSI7层模型--TCP三次握手四次断开--子网划分
查看>>
NOAA(美国海洋和大气管理局)气象数据获取与POI点数据获取
查看>>
NoClassDefFoundError: org/springframework/boot/context/properties/ConfigurationBeanFactoryMetadata
查看>>
node exporter完整版
查看>>
Node JS: < 一> 初识Node JS
查看>>
Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime(72)
查看>>
Node 裁切图片的方法
查看>>
Node+Express连接mysql实现增删改查
查看>>
node, nvm, npm,pnpm,以前简单的前端环境为什么越来越复杂
查看>>
Node-RED中Button按钮组件和TextInput文字输入组件的使用
查看>>
Node-RED中Switch开关和Dropdown选择组件的使用
查看>>