c代码记录之自定义函数数字分离-C 摘要:解题思路:注意事项:参考代码:#includevoid output(char num[]) { int i; for(i=0;i<4;i++) printf(…… 题解列表 2023年11月13日 0 点赞 0 评论 65 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码)--不知道错在哪 摘要:**我自己编译是正确的但是提交报错** ![](/image_editor_upload/20191016025830_32838.png) ```c #include int main()…… 题解列表 2019年10月16日 0 点赞 0 评论 392 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ char c[4]; int i; scanf("%s",c); for(i=0;i<4;i++) printf(…… 题解列表 2019年02月21日 1 点赞 0 评论 296 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:```c //自定义函数之数字分离 #include #include void NumSepara(){ char s[5];//s[4]编译不通过,数组大小定义大于4才通过,这系统…… 题解列表 2022年08月20日 0 点赞 0 评论 129 浏览 评分:0.0
[编程入门]自定义函数之数字分离(C语言) 摘要:解题思路:方法很多,希望能多多交流一下思路。注意事项:无参考代码:1.#include<stdio.h> #include<string.h> void put(char n[]) { …… 题解列表 2021年05月23日 0 点赞 0 评论 242 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:a = num / 1000;//取千位 b = num / 100 % 10;//取前两位之后取百位 c = num / 10 % 10;//取前三位之后取十位 d = num % 10;//…… 题解列表 2019年11月13日 0 点赞 0 评论 321 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:直接上答案注意事项:参考代码:#include<stdio.h>int main(){ int N; int a,b,c,d; scanf("%d",&N); a=N/1000; b=(N%…… 题解列表 2017年08月03日 0 点赞 0 评论 784 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:只要输出在两个数之间加空格就行了注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ void fun(char a[]); …… 题解列表 2018年01月12日 0 点赞 0 评论 559 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char str[100]; int i,j; gets(str); fo…… 题解列表 2017年12月02日 1 点赞 0 评论 668 浏览 评分:0.0
自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int fun(char a[],char b[]){ int i=0,j=0; whi…… 题解列表 2023年09月16日 0 点赞 0 评论 128 浏览 评分:0.0