[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:代码的准确度。参考代码:#include<stdio.h>int main(){ long int x; int sum=0,a; int m=0,n=0,v=0,c=0; sca…… 题解列表 2019年04月24日 0 点赞 0 评论 433 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(Java代码) 摘要: package practice.C; /** * 数字问题 */ import java.util.Scanner; pub…… 题解列表 2019年12月04日 0 点赞 0 评论 601 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h" #include<stdlib.h>int main(){ int a,i,n; scanf("%d",&a); i=1,n=1; d…… 题解列表 2018年03月11日 0 点赞 0 评论 564 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) throws Excep…… 题解列表 2022年12月23日 0 点赞 0 评论 69 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:#include"stdafx.h"#include"math.h"int main(){ int a, t = 0, i, n[5]; scanf("%d", &a); do { n[t] = a…… 题解列表 2018年10月24日 0 点赞 0 评论 178 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 C语言 摘要:解题思路:注意事项:注意,strlen是量字符串的长度的,小心。参考代码:#include<stdio.h>#include<string.h>int main(void){ char val[…… 题解列表 2019年02月18日 0 点赞 0 评论 376 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include int main() { int a[5],i,count=0; for(i=0;i…… 题解列表 2019年11月09日 0 点赞 0 评论 294 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:用字符串来解题,将整数的每一位看成字符注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[5]; …… 题解列表 2017年11月19日 0 点赞 0 评论 565 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:可以尝试用字符串来代替整数注意事项:参考代码:#include"stdio.h"#include"string.h"int main(){ char ch[6]; int i,n…… 题解列表 2017年12月21日 3 点赞 0 评论 760 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,a,b,c,d,e,y; scanf("%5d",&x); a=x/10000; …… 题解列表 2023年03月20日 0 点赞 0 评论 120 浏览 评分:0.0