-
vb.net教程之综合实例
综合实例(相关vb.net教程)
用定义类的方法编程序,对任输入的矩形的两边,求其周长与面积,并对输入的两边进行正确性检查。见,矩形的两边求面积与周长类,程序为:[实验报告7] 或类的应用矩形问题
Public Class juxing
Public w, h As Integer
Public Sub New()
w = 0 : h = 0
End Sub
Public Sub New(ByVal a As Integer, ByVal b As Integer)
If a >= 0 Then
w = a
Else
MsgBox("无效的矩形长度,即将退出!", MsgBoxStyle.OkOnly, "提示")
End
End If
If b >= 0 Then
h = b
Else
MsgBox("无效的矩形高度,即将退出!", MsgBoxStyle.OkOnly, "提示")
End
End If
End Sub
Public Function zhouchang(ByVal w As Integer, ByVal h As Integer) As Integer
zhouchang = 2 * (w + h)
End Function
Public Function area(ByVal w As Integer, ByVal h As Integer) As Double
area = w * h
End Function
End Class
测试类为:
Public Class Form1
Dim x, y As Integer
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim p As Integer
Dim s As Double
x = InputBox("输入矩形的长度", "输入", 1)
y = InputBox("输入矩形的高度", "输入", 1)
Dim a As New juxing(x, y)
p = a.zhouchang(x, y)
s = a.area(x, y)
Console.WriteLine("矩形的两边为:" & x & " " & y)
Console.WriteLine("矩形的周长为:" & p)
Console.WriteLine("矩形的面积为:" & s)
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
End
End Sub
End Class
用定义类的方法编程序,对任输入的矩形的两边,求其周长与面积,并对输入的两边进行正确性检查。见,矩形的两边求面积与周长类,程序为:[实验报告7] 或类的应用矩形问题
Public Class juxing
Public w, h As Integer
Public Sub New()
w = 0 : h = 0
End Sub
Public Sub New(ByVal a As Integer, ByVal b As Integer)
If a >= 0 Then
w = a
Else
MsgBox("无效的矩形长度,即将退出!", MsgBoxStyle.OkOnly, "提示")
End
End If
If b >= 0 Then
h = b
Else
MsgBox("无效的矩形高度,即将退出!", MsgBoxStyle.OkOnly, "提示")
End
End If
End Sub
Public Function zhouchang(ByVal w As Integer, ByVal h As Integer) As Integer
zhouchang = 2 * (w + h)
End Function
Public Function area(ByVal w As Integer, ByVal h As Integer) As Double
area = w * h
End Function
End Class
测试类为:
Public Class Form1
Dim x, y As Integer
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim p As Integer
Dim s As Double
x = InputBox("输入矩形的长度", "输入", 1)
y = InputBox("输入矩形的高度", "输入", 1)
Dim a As New juxing(x, y)
p = a.zhouchang(x, y)
s = a.area(x, y)
Console.WriteLine("矩形的两边为:" & x & " " & y)
Console.WriteLine("矩形的周长为:" & p)
Console.WriteLine("矩形的面积为:" & s)
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
End
End Sub
End Class
栏目列表
最新更新
求1000阶乘的结果末尾有多少个0
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
数据库审计与智能监控:从日志分析到异
SQL Server 中的数据类型隐式转换问题
SQL Server中T-SQL 数据类型转换详解
sqlserver 数据类型转换小实验
SQL Server数据类型转换方法
SQL Server 2017无法连接到服务器的问题解决
SQLServer地址搜索性能优化
Sql Server查询性能优化之不可小觑的书签查
SQL Server数据库的高性能优化经验总结
SQL SERVER性能优化综述(很好的总结,不要错
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比