C#计算面积和周长
所以我使用 Microsoft Visual C# 2010 Express。 我正在尝试制作一个计算面积和周长的程序。 我有 2 个长度和宽度的文本框。 我有 2 个用于面积和周长的只读文本框。 所以我输入面积和周长的数字,当我单击“计算”按钮时,我会在面积和周长只读框中得到答案。 这个计算的代码是什么?
so im using Microsoft Visual C# 2010 Express.
im trying to make a program that calculates area and perimeter.
i have 2 text boxes for length and width.
i have 2 readonly text boxes for area and perimeter.
so i put in the numbers for area and perimeter and i get the answers in the area and perimeter readonly boxes when i click the "calculate" button.
what's the code for this calculation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,那很简单。使用基本的几何公式:面积 = 高度 x 宽度 和 周长 = (高度 + 宽度) x 2
然后只需执行以下操作:
另外,您可能想查看 TryParse 使代码更加稳定并避免无效值的异常。
Well that would be simple. Using basic geometrical formulas: Area = height x width and Perimiter = (height + width) x 2
Then simply do this:
Also, you might want to look at TryParse to make the code a bit more stable and avoid exceptions on invalid values.