最麻烦也是最容易想到的解法。 摘要:解题思路:应用if语句或者switch语句,将可能的情况一一列出来。注意事项:适用于可能的情况类型较少的!参考代码:#include <stdio.h>#include <stdlib.h>int m…… 题解列表 2022年01月26日 0 点赞 0 评论 195 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,count=0,x[5]; for (i=0;i<5;i++…… 题解列表 2022年01月29日 0 点赞 0 评论 151 浏览 评分:0.0
C++ 利用string创建str对象 摘要:解题思路:利用c++ string 创建str对象 类似于字符数组注意事项:第二行末尾没有空格参考代码:/**********************************************…… 题解列表 2022年02月10日 0 点赞 0 评论 435 浏览 评分:0.0
本题焦点:判断位数,输出(正序/逆序)【菜鸟可看】 摘要:解题思路: 1:判断位数! 2:输出(正序:要求空格/逆序)注意事项: @@@怎样实现对位数的提取@@@我用了一个while(n/*是输入值,*/){ …… 题解列表 2022年02月22日 0 点赞 0 评论 269 浏览 评分:0.0
不用数组的方式 就是麻烦一点 摘要:参考代码:#include<stdio.h>int main(){ int x=0; int i=0; int g=0; int b=0; int t=0; int a,y,n,o=0; scanf…… 题解列表 2022年02月22日 0 点赞 0 评论 173 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断--解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ long int a,tem…… 题解列表 2022年03月04日 0 点赞 0 评论 194 浏览 评分:0.0
如何用for循环解决数字的处理与判断 摘要:解题思路:很简单,相信各位程序员们看完代码一目了然!注意事项:for循环和数组的使用参考代码:#include <iostream>using namespace std;int main(){ in…… 题解列表 2022年03月13日 0 点赞 0 评论 295 浏览 评分:0.0
数字的处理与判断(C语言) 摘要:解题思路:先尝试把每一位数分离出来,剩下就容易了注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,n,place; scanf("%d",&n)…… 题解列表 2022年03月27日 0 点赞 0 评论 383 浏览 评分:0.0
字符串的输出 摘要:解题思路:注意事项:参考代码:n=input()print(len(n))for i in n: print(i,end=' ')print()print(n[::-1])…… 题解列表 2022年04月06日 0 点赞 0 评论 152 浏览 评分:0.0
二级C语言-数字的处理与判断 摘要:解题思路:n%qy/cs该方法可以求到每个位上的数值,用数组存值本代码可以算任何小于五位的数,正、负、0;都可以,虽不是最简,但应该是最全,希望各位朋友指导。注意事项:参考代码:#include<st…… 题解列表 2022年04月10日 0 点赞 0 评论 307 浏览 评分:0.0