完全符合题目要求的答案 摘要:【自己理解一下吧】#pragma warning(disable:4996)#include <stdio.h>#define SIZE 16int main(void){ int num; int …… 题解列表 2021年03月11日 0 点赞 0 评论 148 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:```c #include void fun(int a) { printf("%d %d %d %d\n",a/1000,a/100%10,a/10%10,a%10); } i…… 题解列表 2021年02月07日 0 点赞 0 评论 103 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e; scanf("%d",&a); b=a/1000; c=a%1000/100; d…… 题解列表 2021年02月05日 0 点赞 0 评论 124 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C++代码) 摘要:解题思路:字符串+指针传参 注意事项: 参考代码: ```cpp #include using namespace std; char s[10]; void fun(char …… 题解列表 2021年02月04日 0 点赞 0 评论 122 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { /** * @param args */ publ…… 题解列表 2021年02月03日 0 点赞 0 评论 115 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void szfl(int n){ int a,b,c,d; a=n%10; b=n/10%10; c=n/100%10; d=n/10…… 题解列表 2021年01月29日 0 点赞 0 评论 157 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void add(string num){ for (int i = 0;i < num.le…… 题解列表 2021年01月25日 0 点赞 0 评论 231 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:解题思路:定义一个字符数组把输入的四位数作为字符存入然后输出四个字符,中间加入空格你输入的数字何必是数字OJ:你不按套路出牌啊参考代码:#include <stdio.h> int main()…… 题解列表 2021年01月22日 0 点赞 0 评论 139 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(Python代码) 摘要:解题思路:注意事项:参考代码:n = input()for i in n: print(i,end=" ")…… 题解列表 2021年01月09日 0 点赞 0 评论 200 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:解题思路:将所有的位数分离再输出注意事项:注意提取位数的式子要正确参考代码:#include<stdio.h>int main(){ int a,b,c,d;//定义四位数的变量 int …… 题解列表 2021年01月06日 0 点赞 0 评论 612 浏览 评分:8.0