提交时间:2019-11-17 09:18:53
运行 ID: 2305
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,g,h,max=0; for(int i=0;i<=6;i++){ for(int j=0;j<=6;j++){ a=i; b=a+1; c=b+1; d=c+1; e=j; f=e+1; g=f+1; h=j+1; int l=a+b+c+d+e+f+g+h; int m=sqrt(l); if(m*m==l){ max++; } } } cout<<9; }