[编程入门]水仙花数判断 (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { int i; for(i=100;i<=999;i++) { int a,b,c…… 题解列表 2019年04月23日 0 点赞 0 评论 349 浏览 评分:0.0
[编程入门]水仙花数判断 (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { int i; for(i=100;i<=999;i++) { int a,b,c…… 题解列表 2019年04月23日 0 点赞 0 评论 665 浏览 评分:0.0
[编程入门]水仙花数判断 (C语言代码) 摘要:解题思路:三个变量 判断一下 yes就输出注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int …… 题解列表 2019年04月20日 0 点赞 0 评论 857 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题6.6 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2019年03月08日 0 点赞 0 评论 288 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要: #include #include #include int main() { int num=100; int a,b,…… 题解列表 2019年02月27日 0 点赞 0 评论 704 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:三重循环遍历三位数。注意事项:最外层循环要从1开始。参考代码:#include<stdio.h>int main(){ int i,j,k; for(i=1;i<=9;i++){…… 题解列表 2018年12月20日 0 点赞 0 评论 308 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:本题采用穷举法,百位数i,十位数j,个位数k。i,j,k的区间是[0,9],其中i不等于0,因为百位数为0 就不是三位数了注意事项: 注意穷举时,i应该从1开始!参考代码:#inclu…… 题解列表 2018年12月16日 0 点赞 0 评论 247 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:我先想一想注意事项:先没有参考代码:#include<stdio.h>int main(){ int sum; int i,g,s,b; for(i=100;i<=999;i++) { g…… 题解列表 2018年12月15日 0 点赞 0 评论 243 浏览 评分: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 评论 369 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:水仙花数是由三位数组成 利用三个for循环来打印出来所有的三位数(由111-999) 在所有三位数中写出水仙花数的 题解列表 2018年12月11日 0 点赞 0 评论 278 浏览 评分:0.0