[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:```c #include void fenli(int num) { int a,b,c,d; a = num / 1000; //取千位上的数字 b…… 题解列表 2020年09月08日 0 点赞 0 评论 326 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:#include<stdio.h> #include<string.h> void f(int n); int main(void) { int n; scanf("%d",&n); …… 题解列表 2017年07月03日 0 点赞 0 评论 907 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[4]; int i; gets(a); for(i=0;i<3;i++) { …… 题解列表 2018年05月05日 0 点赞 0 评论 569 浏览 评分:0.0
1034 数字分离(sscanf函数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ char a[100]; gets(a)…… 题解列表 2024年05月14日 0 点赞 0 评论 53 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离,有比较细节的地方 摘要:解题思路:利用for循环注意事项:直接用input函数不用外面嵌套int,这也是这个题应该注意的地方参考代码:def q():#直接用q带过了 a = input()#直接便利了字符串,而外面有…… 题解列表 2022年11月23日 0 点赞 0 评论 63 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(Python代码) 摘要:解题思路:Python join() 方法用于将序列中的元素以指定的字符连接生成一个新的字符串。注意事项:Python join() 方法用于将序列中的元素以指定的字符连接生成一个新的字符串。参考代码…… 题解列表 2020年11月26日 0 点赞 0 评论 233 浏览 评分:0.0
数字分离简单函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a;int b,c,d,e;scanf("%d",&a);b=a/1000;e=a%10;d=a/10%1…… 题解列表 2022年12月26日 0 点赞 0 评论 57 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离(phthon代码) 摘要:解题思路:很简单的一个函数,直接打印出来就好了。其实不用函数更简单的。你可以试试注意事项:参考代码:def main(list): for value in list: pri…… 题解列表 2021年07月08日 0 点赞 0 评论 174 浏览 评分:0.0
1034: [编程入门]自定义函数之数字分离 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月12日 0 点赞 0 评论 136 浏览 评分:0.0