题解 1034: [编程入门]自定义函数之数字分离

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

筛选

自定义函数之数字分离

摘要:解题思路:判断一个数字是m位数,每次除以10,发现每次除的余数正好是该数的倒序,则可用下表为0,大小为m的数组开始储存余数,再逆序输出注意事项:参考代码:#includevoid distract(i……

1019数组解法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int fun(int n){  int a[4],i;    while(n!=0)    {……

自定义函数之数字分离

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){   int a[4],n,i;    scanf("%d",&n);    i=0;    while(n>0)……

混子代码你值得拥有!

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    char arr[4] = {0};    for(int i ……