自定义函数之数字分离-题解 摘要:解题思路:注意事项:注意:replace (""," ")如果写在end=" 之前会提示格式错误参考代码:def fenli(inp): #定义字符分离函数 …… 题解列表 2022年03月02日 0 点赞 0 评论 119 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void out(string a){ for(int i=0;i<4;i++){ …… 题解列表 2022年03月01日 0 点赞 0 评论 93 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:def fun(a): b = "" for i in a: b += i b += ' ' print(b…… 题解列表 2022年02月21日 0 点赞 0 评论 121 浏览 评分:0.0
简单易懂代码解决数字分离 摘要:注意事项:本题我们要用到strlen()函数,用于计算字符串长度(简单理解就是你输入的字符个数,空格也算哦)需要引入头文件 #include <string.h>参考代码:#include <stdi…… 题解列表 2022年02月14日 0 点赞 0 评论 374 浏览 评分:9.9
【露离】一行代码 摘要:解题思路:注意事项:参考代码:def main(): print(' '.join(list(input())))main()…… 题解列表 2022年02月05日 0 点赞 0 评论 92 浏览 评分:0.0
写一函数,输入一个四位数字,要求输出这四个数字字符,但每两个数字间空格。如输入1990,应输出"1 9 9 0"。 摘要:解题思路:注意事项:参考代码:#include <math.h>#include <stdio.h>int main(){ char a[100]; gets(a); int i; …… 题解列表 2022年01月29日 0 点赞 0 评论 532 浏览 评分:8.0
[编程入门]自定义函数之数字分离 摘要:解题思路:循环输入的字符串,如果不是最后一个字符,就输出字符+空格,最后一个字符,只输出它本身注意事项:无参考代码:#include<stdio.h>#include<string.h>int i,x…… 题解列表 2022年01月18日 0 点赞 0 评论 127 浏览 评分:0.0
自定义函数之数字分离 摘要:注意:scanf_s("%c", &a[i],1)表示最多读取1-1个字符; 同理scanf_s("%c", &a[i],4)表示最多读取4-1个字符。 ```c #include …… 题解列表 2022年01月16日 0 点赞 0 评论 141 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(Python代码) 摘要:解题思路:注意事项:参考代码:sentence = input()print(sentence.replace(""," ").strip())…… 题解列表 2022年01月07日 0 点赞 0 评论 154 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:没想到这样也能对注意事项:简便而粗暴参考代码:编写题解 #include<stdio.h>#include<stdlib.h>int fen(char a[1000]){ for(in…… 题解列表 2021年12月30日 0 点赞 1 评论 389 浏览 评分:9.9