[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<cmath>int main(){ int num = 0; int tem…… 题解列表 2023年06月18日 0 点赞 0 评论 62 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(Java代码) 摘要:解题思路: 1、求出它是几位数 2、分别输出每一位数字 3、按逆序输出各位数字注意事项:1. 对于给出一个数字求它是个几位数:(1)int num=****;String str=String.val…… 题解列表 2020年11月30日 0 点赞 0 评论 312 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:字符串注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char a[10],…… 题解列表 2018年01月06日 0 点赞 0 评论 566 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> int main() { int arr[6]; //用…… 题解列表 2019年01月05日 1 点赞 0 评论 444 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:利用sprintf函数来转换成字符串注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int a; char …… 题解列表 2018年06月19日 0 点赞 0 评论 305 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int x; sca…… 题解列表 2017年07月26日 0 点赞 0 评论 694 浏览 评分:0.0
比较简单理解这道题的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a,b,x1,x2,x3,x4,x5; scanf("%d",&a); …… 题解列表 2021年06月28日 0 点赞 0 评论 125 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char u[6]; int i=0,len; gets(u); len=s…… 题解列表 2022年04月16日 0 点赞 0 评论 153 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include int main() { int x,i,j,a[5]={0},count=0; scanf("%d",&x); for(i=10000,j=0;i>0&&j 引用文…… 题解列表 2020年03月02日 0 点赞 0 评论 263 浏览 评分:0.0
题解 1009: [编程入门]数字的处理与判断 摘要:此文章用来保存自己的初始代码参考代码:这是简单法,待学习数组之后会重新进行编辑#include<stdio.h> #include<math.h> int main() { int num;…… 题解列表 2022年11月02日 0 点赞 0 评论 91 浏览 评分:0.0