[编程入门]自定义函数之数字分离 摘要:将每个数字看做是一个字符,打印输出即可 #include #include void Turn(char a,char b,char c,char d…… 题解列表 2021年07月01日 0 点赞 0 评论 167 浏览 评分:0.0
自定义函数之数字分离 摘要:解题思路:输入一串字符,逐个输出注意事项:循环语句参考代码:#include<iostream>#include<string>using namespace std;int main(){ s…… 题解列表 2021年06月23日 0 点赞 0 评论 541 浏览 评分:8.4
尝试使用指针遍历数组 摘要:```c #include int main() { char a[4]; scanf("%s",a); char *p =a; for (int i=0…… 题解列表 2021年06月04日 0 点赞 0 评论 177 浏览 评分:0.0
[编程入门]自定义函数之数字分离(C语言) 摘要:解题思路:方法很多,希望能多多交流一下思路。注意事项:无参考代码:1.#include<stdio.h> #include<string.h> void put(char n[]) { …… 题解列表 2021年05月23日 0 点赞 0 评论 242 浏览 评分:0.0
[编程入门]自定义函数之数字分离-Java-超笨方法-4个syso : ) 摘要:解题思路:注意事项:参考代码:Scanner in = new Scanner(System.in); int a = in.nextInt(); System.out.print(a/1000+…… 题解列表 2021年05月19日 0 点赞 0 评论 404 浏览 评分:9.9
一看就会 新思路 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>using namespace std;int main(){ string a; cin>>a;…… 题解列表 2021年05月16日 0 点赞 0 评论 393 浏览 评分:6.0
优质题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:鉴于很多题解没有严格按题目要求通过数组、函数来求解,我便来介绍一个用数组求解此题的方法;对于数据的处理,我们最容易想到的就是通过数组来求解,而在本题中,题目要求我们输入4个连续的不带空格的数…… 题解列表 2021年05月06日 0 点赞 34 评论 7594 浏览 评分:6.4
容易理解的C语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int num, i = 0; char nums[100]; scan…… 题解列表 2021年04月03日 0 点赞 0 评论 91 浏览 评分:0.0
自定义函数之数字分离 摘要:#include<stdio.h>#include<string.h>int main(void){ char num[8]; int i; gets(num); for (i=0;i<4;i++)…… 题解列表 2021年03月30日 0 点赞 0 评论 96 浏览 评分:0.0
一种当做字符串的写法 摘要:解题思路:把输入的数字当做字符串处理后再输出。注意事项:注意字符串末尾‘\0’;参考代码:#include<string.h> #include<stdio.h> char* Function(c…… 题解列表 2021年03月28日 0 点赞 0 评论 122 浏览 评分:6.0