最新 最热

Python利用Toshare:给上证50的股票是否值得投资评级

https://yuyy.info/big_data/class_4_Toshare:给上证50的股票是否值得投资评级/实验二_上证50是否值得投资.html

2022-06-28
0

算法提高新建MicrosoftWord文档

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>#include<string>using namespace std;int main(){int arr[2100];int n;cin>>n;me......

2022-06-28
0

图形周长(Image Perimeters)_搜索

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream> #include<cstring>using namespace std;//char ch1[20][20][2];char ch[20][20][2];void make(int i,int j......

2022-06-28
0

完美正方形

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;int arr[22][2];int sum=0;void dg(int arr[22][2]){if(sum==154)......

2022-06-28
0

杨辉三角

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int a[35][35];void init(int n){for(int i=1;i<=n;i++)for(int j=1;j<=i;j++){......

2022-06-28
0

移动距离

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;int main(){int arr[1000][100];memset(arr,0,sizeof(arr));cou......

2022-06-28
0

字符串处理_Soundex编码

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include <stdio.h>using namespace std;int main() {char ch[21];int i,j,s[21],k;while(gets(ch)!=N......

2022-06-28
0

字符串处理_密文解密

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>#include<string>using namespace std;int main(){int i,j,len;char ch1[210];char......

2022-06-28
0

最大比例

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cmath>using namespace std;double b;int n;long long arr[105];void f(){for(int i=1;i<n;i++......

2022-06-28
0

最短路径test

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;#define INF 1000000int n;int arr[100][100];int s[100];int dist[100];int path[1......

2022-06-28
0