A+B for Input-Output Practice (V)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int n,m,a[100]; scanf("%d",&n); for(i…… 题解列表 2020年09月10日 0 点赞 0 评论 404 浏览 评分:0.0
A+B for Input-Output Practice (IV)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int n; while((scanf("%d",&n))!=EOF) {…… 题解列表 2020年09月10日 0 点赞 0 评论 423 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int a,b; while((scanf("%d%d",&a,&b))!…… 题解列表 2020年09月10日 0 点赞 0 评论 429 浏览 评分:0.0
计算两点间的距离-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int x1,y1,x2,y2; while((scanf("%d%d%d…… 题解列表 2020年09月10日 0 点赞 0 评论 716 浏览 评分:9.9
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:思路较为简单版本 可以先写一下,想一下过程,思路会比较清晰 ```c #include void fun(int a[100],int n,int j) { int k; k=n…… 题解列表 2020年09月09日 0 点赞 0 评论 514 浏览 评分:9.9
[编程入门]自定义函数之整数处理-题解(C语言代码) 摘要:解题思路:这道题过这个oj很简单,但是想弄明白不简单,我的思路是:两个特殊数字(最大,最小),三种位置(数组首,数组中,数组末)一共会有六种情况,每种情况都要单独列出。注意事项:参考代码:#inclu…… 题解列表 2020年09月09日 0 点赞 0 评论 301 浏览 评分:0.0
蓝桥杯2019年第十届真题-后缀表达式-题解(C++代码) 摘要:constexpr auto Inf = 0X3F3F3F3F; #ifndef LOCAL #include <bits/stdc++.h> #endif typedef long l…… 题解列表 2020年09月09日 0 点赞 0 评论 1223 浏览 评分:2.0
数据结构-图的遍历——DFS深度优先搜索-题解(Java代码) 摘要: import java.util.Scanner; public class 深度优先遍历 { static boolean[] isVisite…… 题解列表 2020年09月09日 0 点赞 0 评论 756 浏览 评分:8.7
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:解题思路:很简单怎么容易怎么来注意事项:新手参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[5]; int i; …… 题解列表 2020年09月09日 0 点赞 2 评论 1747 浏览 评分:9.9
写着玩的,怕忘了 摘要:#include<stdio.h>void datastart(char * dna,int A) { for(int i = 0 ;i < A - 1; i++ ) dna[i] = '…… 题解列表 2020年09月09日 0 点赞 0 评论 864 浏览 评分:0.0