编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:for i in range(100,1000): if i == pow(int(str(i)[0]),3)+pow(int(str(i)[1]),3)+p…… 题解列表 2023年02月18日 0 点赞 0 评论 73 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:自恋数当然还是用自恋解法。注意事项:自恋有风险,解题需谨慎。参考代码:1|#include<stdio.h>2|int main()3|{4| int i,j,k,n=100;5| …… 题解列表 2017年12月21日 5 点赞 0 评论 814 浏览 评分:0.0
"水仙花数"是指一个三位数,其各位数字立方和等于其本身。如:153是一个水仙花数,因为153=1^3+5^3+3^3。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i; for(i=100; i<=999; i++) //for()循环中i从…… 题解列表 2018年08月27日 0 点赞 0 评论 914 浏览 评分:0.0
三个嵌套for循环+pow函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> //pow函数的头文件int main(){ int a,b,c,cn,sn; cn=sn=0;…… 题解列表 2024年02月04日 0 点赞 0 评论 95 浏览 评分:0.0
[编程入门]水仙花数判断-题解(Java代码) 摘要: 解题思路:暴力破解 注意事项: int a=i%10; int b=i/10%10; int c=i/100; …… 题解列表 2020年01月22日 0 点赞 0 评论 433 浏览 评分:0.0
1016: [编程入门]水仙花数判断 摘要:import java.io.*; /** * 从 100 循环到 1000,用三个 int 分别保存百位、十位和个位。 */ public class Main { p…… 题解列表 2022年05月11日 0 点赞 0 评论 181 浏览 评分:0.0
简易,易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a,b,c; for (int i=100; i<1…… 题解列表 2024年12月04日 3 点赞 0 评论 507 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int i,a=0,b=0,c=0; for (i=1;i<999;i++) { a=i%10; b…… 题解列表 2018年02月18日 0 点赞 0 评论 687 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:看参考代码先自己琢磨注意事项:注意c语言的位数变化参考代码:#include<stdio.h>int main(){ int a,b,c,x; for(x=100;x<1000;x++) {…… 题解列表 2018年12月12日 0 点赞 0 评论 370 浏览 评分:0.0
[编程入门]水仙花数判断-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){// cout<<"所有的水仙花数是:"; //法1 算术运算 fo…… 题解列表 2020年10月27日 0 点赞 0 评论 477 浏览 评分:0.0