自定义函数之数字分离(数组版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char a[81],b[81];int i;char c=' ';void f()…… 题解列表 2022年10月25日 0 点赞 0 评论 67 浏览 评分:0.0
新手,希望大佬能看看我的短处 摘要:解题思路:注意事项:参考代码:#include <stdio.h>char* liu_0(char* arr){for(int i=0;i<4;i++){printf("%c",arr[i]);for…… 题解列表 2022年08月08日 0 点赞 0 评论 91 浏览 评分:0.0
题目 1034: 秒杀!!! 摘要:解题思路:直接看成是字符串 ,秒杀注意事项:参考代码:#includeusing namespace std;int main(){ string a; cin >> a; f…… 题解列表 2024年05月05日 0 点赞 0 评论 74 浏览 评分:0.0
调用函数,自定义函数之数字分离。 摘要:解题思路:先定义一维数组,gets()为输入,puts()为输出。在用strlen计算字符串的长度好进行for循环(进行多少从循环)。在用if语句进行添加空格。注意事项:类型为char,strlen为…… 题解列表 2021年12月07日 0 点赞 0 评论 178 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:将输入的四位数n进行对10取余,再除以10,得到各个位数的值后,加上48,放入字符型数组,在函数中直接按要求输出。注意事项:1.ASCII的存储方式与整形数据相似。所以可以用整形常量给字符型…… 题解列表 2024年08月04日 0 点赞 0 评论 113 浏览 评分:0.0
随便写写,看看就行 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void shuchu(char *p){ for(;*p!='\0';p++) printf("%c ",*p);}…… 题解列表 2021年12月27日 0 点赞 0 评论 93 浏览 评分:0.0
1034 题解简单易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int seperate(int m,int x,int y,int z,int w){ x=m/1000%10; y=m/100%1…… 题解列表 2022年12月10日 0 点赞 0 评论 47 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路: 方法1.把四位数取余取除获取每一位数字,分别输出。 方法2.把四位数字分别当作一个字符,用数组储存再输出。注意事项: gets从标准输入设备读字符串函数,其可以无限读取以…… 题解列表 2018年06月06日 1 点赞 0 评论 412 浏览 评分:0.0
两种非常简单的法子 摘要:#include<stdio.h> int main(void) { int n; scanf("%d", &n); int a[100]; int i =…… 题解列表 2024年12月28日 0 点赞 0 评论 74 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void add(string num){ for (int i = 0;i < num.le…… 题解列表 2021年01月25日 0 点赞 0 评论 231 浏览 评分:0.0