编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void out(string a){ for(int i=0;i<4;i++){ …… 题解列表 2022年03月01日 0 点赞 0 评论 83 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:```c #include #include char numspaces(char a[],char b[]) { int i = 0, j = 0; int len1=strlen…… 题解列表 2019年09月28日 0 点赞 0 评论 317 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题8.8 (C语言代码)(17行代码解决) 摘要:#include<stdio.h> void kongge(int N) { int a,b,c,d; a=N%10; b=N/10%10; c=N/100%10; d=N/1…… 题解列表 2017年12月06日 4 点赞 0 评论 1091 浏览 评分:0.0
C++代码 for循环 求余 整除 数组保存每位数值 逆序输出 摘要:解题思路:for循环 求余 整除 数组保存每位数值 逆序输出注意事项:暂时不明参考代码:#include<iostream>using namespace std;int main(){ int…… 题解列表 2021年12月28日 0 点赞 0 评论 302 浏览 评分:0.0
简单明了的函数解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h>fan(char a[],int n){int i; for (i …… 题解列表 2023年09月04日 0 点赞 0 评论 99 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(Java代码) 摘要:解题思路: 思路就是Java整形除法运算没有小数,数字除于10可以截掉数字最后一位,而且个位数除于10等于0。%10可以取出数字最后一位。 注意事项:参考代码:public static voi…… 题解列表 2020年12月27日 0 点赞 0 评论 276 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:数字转换为数字字符,根据最后一个数字用%可以获得。注意事项:输出别用了%s,这是字符串的。参考代码:#include<stdio.h>int main(){ int s; char a,b,…… 题解列表 2018年09月16日 0 点赞 0 评论 351 浏览 评分:0.0
用字符串自定义函数分离 摘要:解题思路:注意事项:注意'\0'不要漏掉参考代码:#include <stdio.h>#include <string.h>int main(){ char a[5]; gets(a);/…… 题解列表 2023年01月11日 0 点赞 0 评论 63 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(Java代码) 摘要: import java.lang.String; import java.util.Scanner; public class Main { public static voi…… 题解列表 2020年08月14日 0 点赞 0 评论 278 浏览 评分:0.0
[编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s; for(int …… 题解列表 2022年05月06日 0 点赞 0 评论 110 浏览 评分:0.0