[编程入门]自定义函数之数字分离-题解(C++代码) 摘要: ```cpp #include using namespace std; int main() { string a; cin>>a; for(int i=0;i…… 题解列表 2020年02月09日 0 点赞 1 评论 987 浏览 评分:9.9
自定义函数之数字分离 摘要:解题思路:题目求只是四位数注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=1000&&a<=1000…… 题解列表 2022年04月19日 0 点赞 0 评论 250 浏览 评分:9.9
简单直接易懂 摘要:解题思路:注意事项:输入输出要用%c,%d没法将数字单独拆开参考代码:#include<stdio.h>int main(){ char a[4],i; for(i=0;i<4;i++){ scanf…… 题解列表 2022年11月07日 0 点赞 0 评论 97 浏览 评分:9.9
平平淡淡才是真 摘要:# 简单完成任务 ```c #include main() { void separation(char []); char a[4]; scanf("%s",a); …… 题解列表 2019年10月28日 0 点赞 4 评论 899 浏览 评分:9.9
1034: [编程入门]自定义函数之数字分离(自定义函数、循环、C++) 摘要:解题思路:直接循环是逆序输出,那就除1000,再乘回来就好了注意事项:注意浮点数无法取余,强制转换参考代码:#include <iostream> using namespace std; voi…… 题解列表 2022年10月10日 0 点赞 0 评论 162 浏览 评分:9.9
[编程入门]自定义函数之数字分离-题解(Python代码) python 摘要:```python a = input() #输入 for i in a: #遍历 print(i,end=" ") #格式化输出 当输出字符后以空格结尾(end=" ") ``…… 题解列表 2019年11月21日 0 点赞 2 评论 809 浏览 评分:9.9
简洁的题解 摘要:解题思路:对字符串进行操作注意事项:无参考代码:x = input()def f(string): print(string.replace('',' ').st…… 题解列表 2022年04月06日 0 点赞 0 评论 180 浏览 评分:9.9
自定义拆分函数 摘要:解题思路:mask标注几位数,从而判断要取的位置注意事项:参考代码:#include<stdio.h>int caifen (int a);int main (){int a ;scanf("%d",…… 题解列表 2022年04月23日 0 点赞 0 评论 161 浏览 评分:9.9
易如反掌之自定义函数之数字分离 摘要:解题思路:遍历循环字符串长度,依次输出。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; sc…… 题解列表 2024年04月04日 0 点赞 0 评论 128 浏览 评分:9.9
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;queue<char>mem;int main(){ int i; char a; …… 题解列表 2022年12月06日 0 点赞 0 评论 106 浏览 评分:9.9