题目 1009: [编程入门]数字的处理与判断
摘要:解题思路:1.通过循环去掉最后一位,同时让计数加 2.通过循环将数字的每一位放入数组,再遍历输出。注意事项:参考代码:#include<stdio.h>……
求最大公约数和最小公倍数
摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ intm,n,min=1,……
输出数字位数,并按位输出,再逆序输出。
摘要:解题思路:注意事项:参考代码:voidmain(){ inta; inti=0,di……
1009: [编程入门]数字的处理与判断
摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ intnum=0;&……
此题运用了stl中的vector容器
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){vector<int>v1;intnum;c……
利用递归求解数字的处理与判断
摘要:解题思路:首先须知,在c++中:1、当一个整数/10时,不会产生小数。即int/int!=float。例如:123/10=12,而不是12.32、当一个整数%10时,产生的数是该数的末位。即:123%……
正确的递归应该是啥样的?。。。
摘要:参考代码:#include<iostream>using namespace std;void print1(int ……