[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:代码的准确度。参考代码:#include<stdio.h>int main(){ long int x; int sum=0,a; int m=0,n=0,v=0,c=0; sca…… 题解列表 2019年04月24日 0 点赞 0 评论 433 浏览 评分:0.0
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<cmath>int main(){ int num = 0; int tem…… 题解列表 2023年06月18日 0 点赞 0 评论 62 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:我的方法有点麻烦,中间有很多复杂的循环,应该说是比较笨的方法,但也不失为一种好方法注意事项:参考代码:#include<math.h>#include<stdio.h>int bit(int…… 题解列表 2017年07月15日 4 点赞 0 评论 1145 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,t,s; scanf("%d",&t); if(t/10<1) …… 题解列表 2021年03月23日 0 点赞 0 评论 158 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (Java代码) 摘要:解题思路: 注意事项:1.用分身2.格式要求参考代码:import java.util.*;public class Main{ public static void main(String arg…… 题解列表 2018年12月18日 3 点赞 0 评论 513 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路: 看了很多人的题解之后,我觉得解决题目不应仅能通过示例的测试,如大家所见,示例中是五位数,部分人的代码仅能通过五位数的测试,我的代码是可以通过五位数以内的所有数的!欢迎大家指教…… 题解列表 2017年08月22日 1 点赞 0 评论 1237 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2021年10月20日 0 点赞 0 评论 104 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include int main() { int a,b=0,c[10],i=0; scanf("%d",&a); while(a) { c[i++]=a%10; b…… 题解列表 2019年07月23日 0 点赞 0 评论 401 浏览 评分:0.0
向往简单的生活(C语言代码) 摘要:解题思路:先以字符串形式输入该整数; 再用函数strlen()计算字符串长度; 最后字符串顺、倒输出。注意事项: 1.引用字符串要有#incl…… 题解列表 2018年07月24日 0 点赞 0 评论 756 浏览 评分:0.0
1009题: 数字的处理与判断 摘要:# 自己写的代码 ```c #include #include int main() { char a[5]; gets(a); int len=strlen(a); p…… 题解列表 2023年04月25日 0 点赞 0 评论 542 浏览 评分:0.0