提交时间:2021-05-16 16:59:29
运行 ID: 19545
#include<bits/stdc++.h> using namespace std; int main() { int c=0,i,j; for(i=0; i<=6; i++) { for(j=0; j<=6; j++) { if(floor(sqrt(4*i+4*j+12))==sqrt(4*i+4*j+12)) { c++; } } } cout<<c<<endl; return 0; } 0