当前位置:编程学习 > C#/ASP.NET >>

已知 a=1,b=2,c=3,x=2,计算y=ax2+bx+c之值 这题目该怎么用C#编程?

补充:表达式应是这样的:y=a乘以x的平方+bx+c的值
答案:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int a = 1;
int b = 2;
int c = 3;
int x = 2;
int y;
y = a * 2 + b * x + c;
Console.Write("{0}", y);
}
}
}
int a=1;
int b=2;
int c=3;
int x=2;
int y;
y=a*2+b*x+c
out<<y;

上一个:请问如果电脑不能安装IIS那可以进行C#的编程吗?
下一个:c#的一个程序编程高手来啊~~~~

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,