[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:a = num / 1000;//取千位 b = num / 100 % 10;//取前两位之后取百位 c = num / 10 % 10;//取前三位之后取十位 d = num % 10;//…… 题解列表 2019年11月13日 0 点赞 0 评论 284 浏览 评分:0.0
[编程入门]自定义函数之数字分离 摘要:解题思路:循环输入的字符串,如果不是最后一个字符,就输出字符+空格,最后一个字符,只输出它本身注意事项:无参考代码:#include<stdio.h>#include<string.h>int i,x…… 题解列表 2022年01月18日 0 点赞 0 评论 124 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void out(string a){ for(int i=0;i<4;i++){ …… 题解列表 2022年03月01日 0 点赞 0 评论 83 浏览 评分: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
简单明了的函数解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h>fan(char a[],int n){int i; for (i …… 题解列表 2023年09月04日 0 点赞 0 评论 99 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:幻想乡的妖怪历在幻想乡中,人类使用着和外界相同的历法。然而由于满月对妖怪非常重要,因此许多妖怪们使用着根据月的圆缺、月光的颜色及周期而制作的「妖怪太阴历」。按照外界的历法,幻想乡是在1885…… 题解列表 2017年12月14日 0 点赞 0 评论 781 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(void){ char a[100]; int i; int strlenung;…… 题解列表 2018年04月16日 0 点赞 0 评论 431 浏览 评分:0.0
[题目 1034: 自定义函数之数字分离]C语言解法 摘要:**代码已通过,放心食用** ```c int main(){ char a[4]; int i; for (i = 0; i < 4; i++) { …… 题解列表 2023年10月16日 0 点赞 0 评论 97 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:#include #include void devide(int n); int main() { int n; scanf("%d", &n); devide(n); re…… 题解列表 2020年06月06日 0 点赞 0 评论 193 浏览 评分:0.0
[编程入门]自定义函数之数字分离 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,x1,x2,x3,x4; scanf("%d",&n); x1=n%10; x2=n/10%1…… 题解列表 2019年04月16日 0 点赞 0 评论 373 浏览 评分:0.0