C语言程序设计教程(第三版)课后习题8.8 (C++代码) 摘要:解题思路:正解是应该用int读入,然后分别计算千,百,十,个 四位,但是我是一个要搞事情的人,,所以直接字符串读入就好啦,,然后%c输出即可。。注意事项:最后一个字符后面没有空格,不要多输出了,也许可…… 题解列表 2017年07月28日 2 点赞 1 评论 863 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:题目的意思: 将字符串拆分每两个字符中加入一个空格思路: 将字符串给数组代码:#include<stdio.h> #include<string.h> a(char a[…… 题解列表 2017年06月10日 2 点赞 0 评论 976 浏览 评分:0.0
自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:def function(x): return print(' '.join(x)) if __name__ == '__main…… 题解列表 2024年04月18日 0 点赞 0 评论 92 浏览 评分: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 评论 158 浏览 评分:0.0
[编程入门]自定义函数之数字分离 摘要:参考代码:#include<stdio.h>int main(){ int m,t; int n=1; scanf("%d",&m); t=m; for(t;t>9;t/=10) …… 题解列表 2021年11月26日 0 点赞 0 评论 172 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离 简单易懂版 摘要:```c #include #include void fun(char arr[]){ int n=strlen(arr);//获取数组长度 for(int i=0;i…… 题解列表 2024年08月02日 0 点赞 0 评论 148 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要: #include #include void space(char str[]) { int i=0; for(i=strlen(str)…… 题解列表 2020年03月11日 0 点赞 0 评论 259 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言递归拆分逆序输出) 摘要:解题思路:此题比较简单 利用字符串会更简单 但是为了锻炼一下逻辑思维我们就按照题意用整形来做拆分数字 n%10 可以获得n的最后位n/=10 可以抹去n的最后一位(C语言中任何一个小于10的数除以10…… 题解列表 2018年03月25日 0 点赞 0 评论 868 浏览 评分:0.0
自定义函数之数字分离(so easy) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num; scanf("%d", &num); int a = num / 1000; int b = …… 题解列表 2023年02月08日 0 点赞 0 评论 62 浏览 评分: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 评论 432 浏览 评分:0.0