编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void out(string a){ for(int i=0;i<4;i++){ …… 题解列表 2022年03月01日 0 点赞 0 评论 83 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:def fun(a): b = "" for i in a: b += i b += ' ' print(b…… 题解列表 2022年02月21日 0 点赞 0 评论 117 浏览 评分:0.0
简单易懂代码解决数字分离 摘要:注意事项:本题我们要用到strlen()函数,用于计算字符串长度(简单理解就是你输入的字符个数,空格也算哦)需要引入头文件 #include <string.h>参考代码:#include <stdi…… 题解列表 2022年02月14日 0 点赞 0 评论 338 浏览 评分:9.9
【露离】一行代码 摘要:解题思路:注意事项:参考代码:def main(): print(' '.join(list(input())))main()…… 题解列表 2022年02月05日 0 点赞 0 评论 88 浏览 评分: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 评论 526 浏览 评分:8.0
[编程入门]自定义函数之数字分离 摘要:解题思路:循环输入的字符串,如果不是最后一个字符,就输出字符+空格,最后一个字符,只输出它本身注意事项:无参考代码:#include<stdio.h>#include<string.h>int i,x…… 题解列表 2022年01月18日 0 点赞 0 评论 124 浏览 评分: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 评论 135 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(Python代码) 摘要:解题思路:注意事项:参考代码:sentence = input()print(sentence.replace(""," ").strip())…… 题解列表 2022年01月07日 0 点赞 0 评论 149 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:没想到这样也能对注意事项:简便而粗暴参考代码:编写题解 #include<stdio.h>#include<stdlib.h>int fen(char a[1000]){ for(in…… 题解列表 2021年12月30日 0 点赞 1 评论 377 浏览 评分:9.9
C++代码 for循环 求余 整除 数组保存每位数值 逆序输出 摘要:解题思路:for循环 求余 整除 数组保存每位数值 逆序输出注意事项:暂时不明参考代码:#include<iostream>using namespace std;int main(){ int…… 题解列表 2021年12月28日 0 点赞 0 评论 302 浏览 评分:0.0