编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void out(string a){ for(int i=0;i<4;i++){ …… 题解列表 2022年03月01日 0 点赞 0 评论 145 浏览 评分:0.0
自定义函数之数字分离-题解 摘要:解题思路:注意事项:注意:replace (""," ")如果写在end=" 之前会提示格式错误参考代码:def fenli(inp): #定义字符分离函数 …… 题解列表 2022年03月02日 0 点赞 0 评论 172 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离--解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[5]; gets(a); for(int i=0;i<4;i++){ printf("%c…… 题解列表 2022年03月08日 0 点赞 0 评论 134 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:n = input(str())for i in n: print(i,end = ' ')…… 题解列表 2022年04月07日 0 点赞 0 评论 344 浏览 评分:0.0
[编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s; for(int …… 题解列表 2022年05月06日 0 点赞 0 评论 229 浏览 评分:0.0
自定义函数之数字分离 摘要:#include int main() { int a,b[4],i; scanf("%d",&a); for(i=0;i=0;i--) { printf("%d ",b[…… 题解列表 2022年05月10日 0 点赞 0 评论 206 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月12日 0 点赞 0 评论 191 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,num[4],i; scanf("%d",&a); while(a){ num…… 题解列表 2022年06月13日 0 点赞 0 评论 167 浏览 评分:0.0
[编程入门]自定义函数之数字分离 摘要:解题思路:此处是提前声明的函数,个人习惯;注意事项:参考代码:#include <stdio.h>void si_wei_shu(int num);int main(){ int a; scan…… 题解列表 2022年06月18日 0 点赞 0 评论 338 浏览 评分:0.0
自定义函数之数字分离(C语言简单数组) 摘要: #include void aa (int x); int main() { int x; scanf("%…… 题解列表 2022年07月17日 0 点赞 0 评论 217 浏览 评分:0.0