【编程入门】数字的处理和判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[10]; int i,we…… 题解列表 2024年04月17日 0 点赞 0 评论 103 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:全程使用字符串处理就可以了注意事项:注意换行符的设置,第二行的输出换行符切换为空格,第三行的输出切换为“”(空)参考代码:a=input()print(len(a))for i in ran…… 题解列表 2024年03月30日 0 点赞 0 评论 408 浏览 评分:9.9
C语言 注意范围 摘要:解题思路:注意事项:参考代码:#include <stdio.h> //头文件#include <string.h>int main() //一个文件的开头{ char n[6]; gets(n);…… 题解列表 2024年03月16日 0 点赞 0 评论 99 浏览 评分:0.0
C++速度功成 摘要:解题思路:将输入的数字串当作数组,利用库函数string,直接获得数组长度,然后for循环遍历数组每一个位置上的数字,输出;法二:构建一空数组,利用for循环将输入的数字串逐个拆解,从个位数依次填入数…… 题解列表 2024年03月13日 0 点赞 0 评论 127 浏览 评分:0.0
题目 1009: [编程入门]数字的处理与判断 摘要:解题思路:1. 通过循环去掉最后一位,同时让计数加 2.通过循环将数字的每一位放入数组,再遍历输出。注意事项:参考代码:#include<stdio.h>//建立数组int w[10];int …… 题解列表 2024年02月29日 0 点赞 0 评论 173 浏览 评分:9.9
求最大公约数和最小公倍数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m, n,min=1,max=1,i; cin >…… 题解列表 2024年02月08日 0 点赞 0 评论 185 浏览 评分:0.0
输出数字位数,并按位输出,再逆序输出。 摘要:解题思路:注意事项:参考代码:void main(){ int a; int i=0,divisor = 10; int array[5]; int trunNum = 0; …… 题解列表 2024年01月31日 0 点赞 0 评论 61 浏览 评分:0.0
1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int num = 0; cin >> num; s…… 题解列表 2024年01月23日 0 点赞 0 评论 120 浏览 评分:0.0
此题运用了stl中的vector容器 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ vector<int>v1; int num; cin>>n…… 题解列表 2024年01月20日 0 点赞 0 评论 75 浏览 评分:9.9
数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n ,count = 0 ,i = 0 , a[5]…… 题解列表 2024年01月17日 0 点赞 0 评论 78 浏览 评分:9.9