亿点疑惑
  • 板块灌水区
  • 楼主Steven_Gerrard
  • 当前回复3
  • 已保存回复3
  • 发布时间2022/10/28 14:29
  • 上次更新2023/10/27 05:26:50
查看原帖
亿点疑惑
528478
Steven_Gerrard楼主2022/10/28 14:29
#include<bits/stdc++.h>
using namespace std;
int read()
{
	int f=1,x=0;char ch=getchar();
	for(;ch<'0'||ch>'9';ch=getchar())
		if(ch=='-')f=-1;
	for(;ch>='0'&&ch<='9';ch=getchar())
		x=x*10+ch-'0';
	return x*f;
}
struct node
{
	char name[101];
	int famous,fit,cham,eur,poss;
}team[101];
int main()
{
	int m,n;
	m=read(),n=read();
	for(int i=1;i<=m;++i)
	{
		scanf("%s",team[i].name);
		/*team.famous=read();
        team.fit=read();
        team.cham=read();
        team.eur=read();
        team.poss=read();*/
	}
	
}

为什么注释部分编译报错?求大佬解决

2022/10/28 14:29
加载中...