• 直角三角形个数


    #include <iostream>
    using namespace std;
    int main( )
    {    int a,b,c;
       for (a=1; a<20; a++)
          for (b=1; b<20; b++)
             for (c=1; c<=20; c++)
              if (a*a+b*b==c*c)    
                            printf("a=%d,b=%d,c=%d
    ",a,b,c);
          system("pause");    return 1;
    }     
    View Code
    #include <iostream>
    using namespace std;
    int main( )
    {    int a,b,c;
       for (a=1; a<20; a++)
          for (b=1; b<20; b++)
             for (c=1; c<=20; c++)
              if (a*a+b*b==c*c)    
                            printf("a=%d,b=%d,c=%d
    ",a,b,c);
          system("pause");    return 1;
    }     

     #include <iostream>
    using namespace std;
    int main( )

      int a,b,c;
        for (a=1; a<20; a++)
        for (b=a; b<20; b++)
          for (c=b; c<=20; c++)


       if (a*a+b*b==c*c) 
                                cout<<"a="<<a<<"  b="<<b<<"  c="<<c<<endl;
       system("pause"); return 1;

    ********************************************************************************

    #include <iostream>

    #include<math.h>

    using namespace std; int main( )

    {   int a,b,c;     

       for (a=1; a<20; a++)    

    for (b=a+1; b<20; b++)   

       {          c=sqrt(a*a+b*b);

     if (a*a+b*b==c*c)

    cout<<"a="<<a<<" b="<<b<<" c="<<c<<endl;

    }

      return 1;

    }


  • 相关阅读:
    【go语言】Windows下go语言beego框架安装
    分页
    MongoDB用户与权限管理
    MongoDB安装在Centos7下安装
    centos7安装mysql5.7.33 tar包方式
    文件路径分隔符
    python之批量打印网页为pdf文件
    Python驱动SAP GUI完成自动化(五)
    动态内存与智能指针
    关联容器
  • 原文地址:https://www.cnblogs.com/wc1903036673/p/3870545.html
Copyright © 2020-2023  润新知