找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 169|回复: 0

2x+xy+x/y=243求正整数解代码

[复制链接]

1

主题

0

回帖

35

积分

管理员

积分
35
发表于 2024-3-16 09:48:11 | 显示全部楼层 |阅读模式
using System;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            for (double x = 0; x <= 65532; x++)
            {
                for (double y = 1; y <= 65532; y++)
                {
                    double r = 2.0 * x + x * y + x / y*1.0;
                    if (r == 243)
                    {
                        Console.WriteLine("x=" + x + ",y=" + y + "=243");
                    }
                }
            }
            Console.ReadLine();
        }
    }
}


结果为:
Hello World!
x=24,y=8 =>243
x=54,y=2 =>243
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|膜结构网

GMT+8, 2025-1-1 16:57 , Processed in 0.124441 second(s), 22 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表