#include <iostream> #include<string.h> #include<stdio.h> #include<cmath> using namespace std; int t[1005][1005]; //存储邻接矩阵 int du[1005]; //存储度 //这里不得不说一句,将数组的定义在main里面就报错,只能在main外面定义它才不会出错也是一个很有意思的点 int main(){ int f,c,temp,T,m,count; cin>>T;...