C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:非常简单只需要知道怎么循环空格就好了注意事项:空格别忘了就行!参考代码:#include<stdio.h>int ccc(int i){ char a[1000]; int s;…… 题解列表 2018年05月01日 0 点赞 0 评论 395 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:注意事项:参考代码://写一函数,输入一个四位数字,要求输出这四个数字字符,但每两个数字间空格。如输入1990,应输出"1 9 9 0"。#include<stdio.h>int main(…… 题解列表 2018年12月27日 0 点赞 0 评论 288 浏览 评分:0.0
最普通的数组解法 摘要:解题思路:#include<stdio.h>#include<string.h>int main(){char arr[100];int i=0;scanf("%s&…… 题解列表 2025年01月14日 0 点赞 0 评论 32 浏览 评分:0.0
c++题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int check(int a){ int gewei = a%10; int …… 题解列表 2023年03月15日 0 点赞 0 评论 78 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { /** * @param args */ publ…… 题解列表 2021年02月03日 0 点赞 0 评论 116 浏览 评分:0.0
[编程入门]自定义函数之数字分离 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,x1,x2,x3,x4; scanf("%d",&n); x1=n%10; x2=n/10%1…… 题解列表 2019年04月16日 0 点赞 0 评论 373 浏览 评分: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>#include<string.h>int main(){ void fun(char a[]); …… 题解列表 2018年01月12日 0 点赞 0 评论 559 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void fun (int n){ int i; int cnt[10]; for(i=0;i<4;i++){ cnt[3-i]=n…… 题解列表 2023年07月12日 0 点赞 0 评论 50 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:#include #include int main() { char a[100]; scanf("%s",a); for(int i=0;a[i]!=0;i++) print…… 题解列表 2019年08月20日 0 点赞 0 评论 322 浏览 评分:0.0