水仙花数判断简单易懂(c语言详细代码) 摘要:解题思路:首先拿到所有三位数,再将每个三位数拆分算出立方和,最后 比较输出水仙花数注意事项:参考代码:#include<stdio.h> #include<math.h> int main() {…… 题解列表 2023年11月09日 0 点赞 0 评论 274 浏览 评分:9.9
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10]; gets(a); for (int…… 题解列表 2023年11月09日 0 点赞 0 评论 216 浏览 评分:9.9
冒泡排序c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ string name; doubl…… 题解列表 2023年11月09日 0 点赞 0 评论 694 浏览 评分:9.9
冒泡排序c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){ int n=0; in…… 题解列表 2023年11月09日 0 点赞 2 评论 367 浏览 评分:9.9
c++萌新的题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ //intÊÇÕûÊý 1 2 9 69 100 …… 题解列表 2023年11月09日 0 点赞 0 评论 286 浏览 评分:9.9
祝你好运laber 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c;…… 题解列表 2023年11月09日 0 点赞 0 评论 397 浏览 评分:9.9
C语言训练-求矩阵的两对角线上的元素之和 摘要:解题思路:1. 首先,导入<stdio.h>头文件,该头文件包含了输入输出函数scanf和printf的声明。2. 在main函数中,声明了一些变量: - i和j分别用于循环计数。 - n表示…… 题解列表 2023年11月09日 0 点赞 0 评论 679 浏览 评分:9.9
雇佣兵(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年11月09日 0 点赞 0 评论 351 浏览 评分:9.9
问题N 阶乘求和(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年11月09日 0 点赞 0 评论 380 浏览 评分:9.9
寻找矩阵最值 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int i=0,j=0; int n=0,max=0,h…… 题解列表 2023年11月09日 0 点赞 0 评论 345 浏览 评分:9.9