乐迪钱魏润禹


私信TA

用户名:qwry

访问量:4612

签 名:

等  级
排  名 1051
经  验 3277
参赛次数 14
文章发表 18
年  龄 0
在职情况 学生
学  校 乐迪教育
专  业

  自我简介:

1001100101101101101111111

这一期大家可以把原题和你写的代码发在评论区,我会的一 一回复                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  

 

0.0分

3 人评分

  评论区

/*@指针原来是套娃的,这是我写的:*/
#include<iostream>
using namespace std;
int main()
{
	int n,m;
	cin>>n>>m;
	int a[m][n];
	for(int i=0;i<m;i++)
	{
		for(int j=0;j<n;j++)
		{
			cin>>a[i][j];
		}
	}
	int a2[n];
	for(int i=0;i<n;i++)
	{
		cin>>a2[i];
	}
	for(int i=0;i<m;i++)
	{
		bool b=true;
		for(int j=0;j<n;j++)
		{
			if(a[i][j]!=a2[j])
			{
				b=false;
				break;
			}
		}
		if(b==true)
		{
			cout<<"Yes"<<endl;
			return 0;
		}
	}
	cout<<"No"<<endl;
	return 0;
}
/*
这题不能用string类型,用了输入会出错,因为string类型是以第一个字符到空格处为一个变量,不是一行
2022-07-09 14:47:34
https://www.dotcpp.com/oj/problem2036.html?sid=8069412&lang=1#editor
2036: 散列存储
一直错误通过不了
#include <bits/stdc++.h>
#include <vector>
#define ll long long
using namespace std;
 
int main()
{
	ll n,m;
	string k;
	vector<string>p;
	cin>>n>>m;
	getchar();
	for(int i=0;i<m;i++){
		getline(cin,k);
		p.push_back(k); 
	}
	getline(cin,k);
	
	find(p.begin(),p.end(),k)!=p.end()?cout<<"Yes":cout<<"No";
	 
    return 0;
 }
2022-07-09 12:59:03
  • «
  • 1
  • »