本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int main(){for(int i=1;i<10;i++){for(int j=0;j<10;j++){for(int k=0;k<......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;bool judge(char temp,char arr2[100]){int j=0;while(arr2[j]!=' '){if(temp==......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;int main(){int n,arr[22],arr2[22][2];memset(arr2,0,sizeof(arr......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;int n,m,x,y,sum=0;int array[1100][1100],beUsed[1100];void searc......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream> #include<cstring>using namespace std;int array[210][3];int array1[210][2];int n,m,MAX=0;int w=0,v=......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;void print(char ch1[4]){char ch2[26][4];ch2[0][0]='*';ch2[0][......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int main(){int n,sum=0;cin>>n;for(int i=1;i<=n;i++){if(n%i==0){sum++;......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<vector>using namespace std;int CompactIntegers(vector<int> vec,int len){int sum=0;for(int......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<string>#include<cstring>using namespace std;int add(int obj1,int obj2){int obj3;obj3=obj......
本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>using namespace std;int dx[]={0,0,1,-1};int dy[]={1,-1,0,0};int arr[7][7];void dfs......