C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a,b,c,i; for(i=100; i<1000…… 题解列表 2018年08月23日 0 点赞 0 评论 399 浏览 评分:0.0
用for循环遍历数据panduan 摘要:解题思路:注意事项:这个代码能在vs上运行但答案错误不知道为啥参考代码:#include<iostream>using namespace std;int main(){ int a, b, c…… 题解列表 2022年02月26日 0 点赞 0 评论 104 浏览 评分:0.0
新手常规简易 摘要:解题思路:常规注意事项:参考代码:#include<stdio.h>int main(){ int num=100; int a,b,c; for(num==100;(99<num)…… 题解列表 2022年12月23日 0 点赞 0 评论 61 浏览 评分:0.0
水仙花数判断 摘要:解题思路:根据水仙花数的特点注意事项:缩进参考代码:for i in range(100,1000): a = i//100 b = i%100//10 c = i%10 if…… 题解列表 2022年04月25日 0 点赞 0 评论 199 浏览 评分:0.0
[编程入门]水仙花数判断 摘要:解题思路:利用循环,因为是三位数,所以从100一直到999,然后加一个条件的判断就行注意事项:1.注意题目要求每一个数占一行,记得输出时候加换行参考代码:#include<stdio.h>#inclu…… 题解列表 2021年03月12日 0 点赞 0 评论 138 浏览 评分:0.0
[编程入门]水仙花数判断-题解(Java代码) 摘要:```java 不知道为啥就是显示不了乘号,b与100,c与10,还有三个b、c、d之间都有乘号 public class sxs { public static void main(Stri…… 题解列表 2020年02月09日 0 点赞 0 评论 266 浏览 评分:0.0
1016: [编程入门]水仙花数判断 摘要:import java.io.*; /** * 从 100 循环到 1000,用三个 int 分别保存百位、十位和个位。 */ public class Main { p…… 题解列表 2022年05月11日 0 点赞 0 评论 181 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:三位数三个数字的拆分并分别表示是关键。注意事项:循环用for较为方便,取余是%,我就没记住。参考代码:#include<stdio.h>int main(){ int a=100,b,c,d; for…… 题解列表 2018年03月31日 1 点赞 0 评论 441 浏览 评分:0.0
[编程入门]水仙花数判断-题解(C语言代码) 摘要:原题链接:[[编程入门]水仙花数判断](https://www.dotcpp.com/oj/problem1016.html "[编程入门]水仙花数判断") 解题要点: 1.各个位数的数的范围0~…… 题解列表 2020年02月24日 0 点赞 0 评论 275 浏览 评分:0.0
编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { for(int i=153;i<10…… 题解列表 2024年04月20日 0 点赞 0 评论 95 浏览 评分:0.0