[编程入门]数字的处理与判断-题解(C语言代码)(暴力输出,新手一看就懂) 摘要:```c #include int main() { int n; int a,b,c,d,e; scanf("%d",&n); if(n%10000!=n) { pr…… 题解列表 2021年02月02日 0 点赞 1 评论 485 浏览 评分:9.9
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[5],b,c=1,d,e,temp=10,f,i; scanf("%d",&b); e=b; whi…… 题解列表 2021年02月16日 0 点赞 0 评论 320 浏览 评分:9.9
来来来,看过来 摘要:解题思路:用字符串的知识点来写比较好写注意事项:参考代码:#include<stdio.h>#include <string.h>int main(){int len;char s[5];scanf(…… 题解列表 2021年03月07日 0 点赞 0 评论 271 浏览 评分:9.9
题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { double a; int e; double …… 题解列表 2021年03月17日 0 点赞 0 评论 632 浏览 评分:9.9
[编程入门]数字的处理与判断 (c++) 摘要:参考代码:#include<iostream>using namespace std;int main(){ int arr[5]; int n; //输入的数 int number = 0;//记录…… 题解列表 2021年03月24日 0 点赞 0 评论 532 浏览 评分:9.9
一个刚入门的小白写的简单易懂初级题解 摘要:解题思路:先解决输出是几位数的问题,因为后面两个问题是同一个类型问题,可以一起求解注意事项:注意题目的要求,比如1 2 3 4 5之间要有空格这个输出要求。参考代码:/*给出一个不多于5位的整数,要求…… 题解列表 2021年03月28日 0 点赞 4 评论 234 浏览 评分:9.9
题解—涉及 利用string进行对数字的处理 摘要:### # 首先卖个广告,欢迎关注我的github账号 ##### peach99cpp,里面有个库存储了我的做题笔记和源代码,欢迎加入! #### 题解——关于string解决数字处理问题的…… 题解列表 2021年04月01日 0 点赞 3 评论 328 浏览 评分:9.9
我愿称之为最捞解法 摘要:解题思路:我没有学数组,字符串什么都没有学,但是可以直接冲注意事项:参考代码:#include<stdio.h> int main() { int a, a1, a2, a3, a4, a5,…… 题解列表 2021年04月23日 0 点赞 0 评论 265 浏览 评分:9.9
1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:import java.util.*;public class Main {public static void main(String[] args) { Scanner sc …… 题解列表 2021年05月08日 0 点赞 0 评论 409 浏览 评分:9.9
求一个整数的位数及每一位数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x, sum = 10, a = 1; cin >> x; w…… 题解列表 2021年05月16日 0 点赞 0 评论 508 浏览 评分:9.9