题解 1009: [编程入门]数字的处理与判断

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C++利用指针重复遍历输出

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;int main(){    char str[20] =……

递归函数法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int b[5],i=0,mask2=1,n=0;int fun(int a ,int w){ if……

利用递归求解数字的处理与判断

摘要:解题思路:首先须知,在c++中:1、当一个整数/10时,不会产生小数。即int/int != float。例如:123/10=12,而不是12.32、当一个整数%10时,产生的数是该数的末位。即:12……

数字的处理与判断

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n ,count = 0 ,i = 0 , a[5]……

求最大公约数和最小公倍数

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int m, n,min=1,max=1,i;    cin >……

题目 1009: [编程入门]数字的处理与判断

摘要:解题思路:1. 通过循环去掉最后一位,同时让计数加    2.通过循环将数字的每一位放入数组,再遍历输出。注意事项:参考代码:#include<stdio.h>//建立数组int w[10];int ……