[编程入门]自定义函数之数字分离-题解(C++代码) 摘要:解题思路:字符串+指针传参 注意事项: 参考代码: ```cpp #include using namespace std; char s[10]; void fun(char …… 题解列表 2021年02月04日 0 点赞 0 评论 122 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离-简单方法 摘要:解题思路:注意事项:注意使用-%2d(左对齐并间隔两格) 参考代码:#include<stdio.h>#include<math.h>int fun(int a){ int t = 0; for (…… 题解列表 2023年07月16日 0 点赞 0 评论 66 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:```c #include #include char numspaces(char a[],char b[]) { int i = 0, j = 0; int len1=strlen…… 题解列表 2019年09月28日 0 点赞 0 评论 317 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:十分简洁的代码,注意数组是从0开始的。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[4];…… 题解列表 2019年04月06日 0 点赞 0 评论 246 浏览 评分:0.0
自定义函数之数字分离(C语言简单数组) 摘要: #include void aa (int x); int main() { int x; scanf("%…… 题解列表 2022年07月17日 0 点赞 0 评论 152 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离(phthon代码) 摘要:解题思路:很简单的一个函数,直接打印出来就好了。其实不用函数更简单的。你可以试试注意事项:参考代码:def main(list): for value in list: pri…… 题解列表 2021年07月08日 0 点赞 0 评论 172 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月12日 0 点赞 0 评论 135 浏览 评分:0.0
直接读入字符如其所愿 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[1000]; gets(s); for(in…… 题解列表 2023年12月18日 0 点赞 0 评论 39 浏览 评分:0.0
[编程入门]自定义函数之数字分离 (Python代码) 摘要:## 自定义函数之数字分离 a=input() print(' '.join(a))#join函数用于将序列中的元素以指定的字符连接生成一个新的字符串。 ``` a=input() p…… 题解列表 2019年11月22日 0 点赞 0 评论 837 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:#include<stdio.h>int main(){ int a[4],i,o=1000; scanf("%d",&i); for(int u=0;u<4;u++) { a[u]=i/o;…… 题解列表 2020年07月21日 0 点赞 0 评论 128 浏览 评分:0.0