请问各位高手们,如果我要解Y=10,Y=2*X的一元一次方程中X的值,直接用下面这个式子是错误的,那么要用什么式子呢?还是没有能直接计算的式子?
using System;
using System.Collections.Generic;
using System.Text;namespace _23
{
    class Program
    {
        static void Main(string[] args)
        {
            double x;
            double y;
            y=10;
            y=5*x;  
            
               
            
            
           
            Console .WriteLine ("x={0}",x);
        }
    }
}