身份证号码升级-题解(C++代码) 摘要:解题思路:字符串注意事项:字符串和数字的转换参考代码:#include <iostream> #include <cstring> using namespace std; char s1[20…… 题解列表 2021年03月30日 0 点赞 0 评论 437 浏览 评分:0.0
数学的图表 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,sum = 0; while(scanf("%d",&n)!=EOF) { …… 题解列表 2021年03月30日 0 点赞 0 评论 179 浏览 评分:0.0
容易理解的C语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a, b, c, n; scanf("%d", &n); a =…… 题解列表 2021年03月30日 0 点赞 0 评论 451 浏览 评分:8.0
C************************************ 摘要:#include <stdio.h>#include <string.h>#include <math.h>int main(){ int k,l,i,j,m; long a[101][1…… 题解列表 2021年03月30日 0 点赞 0 评论 479 浏览 评分:8.7
题目 1671: 小九九(能解决格式问题的C代码) 摘要:解题思路: 利用循环来输出九九乘法表 通过 i 来控制九九乘法表的 行 并且表示为第二个元素 通过 j 来控制九九乘法表的 列 并且表示为第一个元素 也就是 j * i…… 题解列表 2021年03月30日 0 点赞 4 评论 496 浏览 评分:8.0
容易理解的C语言代码 摘要:解题思路: 能同时被那三个数整除,也就是被他们的最小公倍数整除即可 因此,也可以从最小公倍数开始循环注意事项:参考代码:#include <stdio.h> int main() { …… 题解列表 2021年03月30日 0 点赞 0 评论 213 浏览 评分:0.0
统计字符数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i,j=0,max=0,letter; char s…… 题解列表 2021年03月30日 0 点赞 0 评论 249 浏览 评分:0.0
容易理解的C语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int count = 0; //统计负数个数 double aver = 0;/…… 题解列表 2021年03月30日 0 点赞 0 评论 144 浏览 评分:0.0
字符逆序,Java递归题解 摘要:import java.util.Scanner; public class 字符逆序 { //字符逆序--递归方法 public static void reString(…… 题解列表 2021年03月30日 0 点赞 0 评论 210 浏览 评分:9.9
特殊的质数肋骨---java方法 摘要:import java.util.Scanner; public class Main { //创建一个判断素数的方法 public static boolean sushu…… 题解列表 2021年03月30日 0 点赞 0 评论 419 浏览 评分:9.9