[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思将输入数的每位数字保存下来,然后按要求输出;注意事项:数组的界限问题。参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int n;…… 题解列表 2019年05月19日 0 点赞 0 评论 361 浏览 评分:5.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long int x; int sum=0,a; int m=0,n=0,v=0,c=0; scanf("%d"…… 题解列表 2019年04月24日 0 点赞 0 评论 395 浏览 评分:0.0
[编程入门]数字的处理与判断 (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
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意此题输入输出均为计算整型格式而非字符型,而且题目在选择结构要求解题范畴内注意事项:参考代码:#include<stdio.header>int m (){ int m,n,a,b,c…… 题解列表 2019年04月22日 0 点赞 0 评论 752 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:利用字符串注意事项:参考代码: #include<stdio.h>#include<string.h>int main(void){ char arr1[6]; int i, n; i…… 题解列表 2019年04月19日 0 点赞 0 评论 441 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[100],i; scanf("%s"…… 题解列表 2019年04月17日 0 点赞 0 评论 354 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (void){ int a; int b = 0; int ch[5] = {0,0,0,0,…… 题解列表 2019年04月01日 1 点赞 0 评论 286 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> using namespace std; int mai…… 题解列表 2019年03月31日 0 点赞 0 评论 307 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:%n计数。注意事项:注意判断最后一个数不要加空格!参考代码:#include <stdio.h>int main(){ char str[5]; int x; scanf("%s%n",&s…… 题解列表 2019年03月22日 0 点赞 1 评论 2165 浏览 评分:9.6
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:本人较蠢,只能强解注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f; scanf("%d",&a); b=a/1…… 题解列表 2019年03月12日 0 点赞 0 评论 350 浏览 评分:0.0