1009,好懂的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c,d,e,f,g; scanf("%d",&a);…… 题解列表 2021年11月12日 0 点赞 0 评论 292 浏览 评分:0.0
简单易懂的写法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,a,b,c,d,e; scanf("%d",&x); a=x%10; b=x/10%10; c=x/…… 题解列表 2021年11月10日 0 点赞 0 评论 193 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>main(){ int a,i,n,k,t; n=0; scanf("%d",&a); t=a;…… 题解列表 2021年11月08日 0 点赞 0 评论 215 浏览 评分:0.0
[编程入门]数字的处理与判断---利用for循环详解---(C语言) 摘要:```c #include int main() { int a,n,s; int i=0,t=0,n1; scanf("%d",&a);//12345 n=a;//…… 题解列表 2021年11月07日 0 点赞 0 评论 420 浏览 评分:9.9
数字的处理与判断 摘要:#include<stdio.h> #include<string.h> //strlen()包含其中 #define MAX 6 //方便修改取值上限 int main() { …… 题解列表 2021年11月02日 0 点赞 0 评论 215 浏览 评分:0.0
C语言初学者一个小时写出来的。 摘要:解题思路:初学者用简单方法把三个问题挨个解决注意事项:有点费时间参考代码:#include <stdio.h>int weishu(int x); //自定义函数,位数,用于解决第一个问题,形参x…… 题解列表 2021年11月02日 0 点赞 0 评论 432 浏览 评分:9.9
数字的处理与判断 摘要:#include<stdio.h> #include<math.h>//调用函数 int main() { int n,i,count=0; int a,c,d; int b,f…… 题解列表 2021年10月31日 0 点赞 0 评论 188 浏览 评分:0.0
普通方法(初学者方法) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2021年10月27日 0 点赞 0 评论 264 浏览 评分:6.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2021年10月20日 0 点赞 0 评论 192 浏览 评分:0.0
给出一个不多于5位的整数,要求 1、求出它是几位数 2、分别输出每一位数字 3、按逆序输出各位数字。 摘要:解题思路:用if函数来限定输入数值的范围注意事项:if函数限定的条件后不可有';'参考代码:#include <stdio.h>int main() { int a,b,c,d,…… 题解列表 2021年10月17日 0 点赞 0 评论 587 浏览 评分:9.3