编程,输入x,计算并输出下列分段函数f(x)的值,当x<1是输出x,当小于10时输出2x-1,当x>=10时,输出3x-11
1个回答
展开全部
基于c#的
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please enter a number");
int a = int.Parse(Console.ReadLine());
if (a < 1)
{
Console.WriteLine(a);
}
else if (a >= 1 && a < 10)
{
Console.WriteLine(2 * a - 1);
}
else
{
Console.WriteLine(3 * a - 11);
}
Console.ReadKey();
}
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please enter a number");
int a = int.Parse(Console.ReadLine());
if (a < 1)
{
Console.WriteLine(a);
}
else if (a >= 1 && a < 10)
{
Console.WriteLine(2 * a - 1);
}
else
{
Console.WriteLine(3 * a - 11);
}
Console.ReadKey();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询