题解列表
对题2798:编写寻找数组最大值与最小值的函数,求得最大跨度值
摘要: 解题思路:先设置一个长度为1000的arr数组,通过输入n的值,用for循环可以设置arr[n]数组中的每个元素。在设置好数组的基础上,编写两个函数分别找出arr[n]数组中的最大元素……
题解 2758: 打印ASCII码
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char a; cin>>a; cout<<(int)a<……
题解 2759: 打印字符
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; putchar(a); ……
编写题解 1116: IP判断(正则表达式)有详细解释
摘要:我用的是正则表达式,可以参考下面图片的解释
 {……
编写题解 1390: 大神老白
摘要:```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {……
2943: Vigenère密码
摘要:解题思路:注意事项:参考代码:#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <iostream>
us……