11.算术运算符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11.算术运算符相关的知识,希望对你有一定的参考价值。
+,-,*,/,%我们在使用算术运算符的时候,一定要注意算术运算符的优先级的问题.
代码示例1:
namespace _12.算术运算符
{
class Program
{
static void Main(string[] args)
{
//演示:某学生三门课的成绩为:语文:90分,数学100,英语80,请计算它的总成绩和平均成绩.
int chinese = 90;
int math = 100;
int english = 80;
Console.WriteLine("总成绩为:{0},平均成绩为:{1}.",chinese+math+english,(chinese+math+english)/3);
Console.ReadKey();
}
}
}
代码示例2:
namespace _13.算术运算符练习题01
{
class Program
{
static void Main(string[] args)
{
//定义两个数分别为100和20打印两个数的和.
int a = 100;
int b = 20;
Console.WriteLine("和为:{0}",a+b);
Console.ReadKey();
}
}
}
代码示例3:
namespace _13.算术运算符练习题02
{
class Program
{
static void Main(string[] args)
{
//计算半径为5的圆的面积和周长并打印出来,(pi为3.14)
const double PI = 3.14; //圆周率
int r = 5; //半径为5
Console.WriteLine("周长为:{0}", 2 * PI * r);
Console.WriteLine("面积为:{0}",PI*r*r);
Console.ReadKey();
}
}
}
代码示例4:
namespace _13.算术运算符的练习题03
{
class Program
{
static void Main(string[] args)
{
//某商店T桖的价格为35元/件,裤子的价格为120元/条,小明在该店
//买了3键T恤和2条裤子,请计算小明应付多少钱.
int T_shirt = 35;
int trousers = 120;
Console.WriteLine("三件T恤和两件裤子的价格为:{0}",25*3+120*2);
Console.WriteLine("以上价格打8.8折之后的价格为:{0}",(25 * 3 + 120 * 2)*88/100);
Console.ReadKey();
}
}
}
以上是关于11.算术运算符的主要内容,如果未能解决你的问题,请参考以下文章