使用vb语言编写一个程序,使用print语句分别显示byte integer single string date 和boolean数据类型的数值,并显示数据类型的名称
时间: 2024-11-03 19:19:55 浏览: 14
VB程序设计代码基础PPT教案学习.pptx
在VB (Visual Basic) 中,你可以使用下面的代码片段来演示如何使用`Print`语句打印不同类型的数据:
```vb
Module Main
Sub Main()
' Byte 类型
Dim byteValue As Byte = 100
Console.WriteLine("Byte 数据类型: " & byteValue & ", Value: " & byteValue)
' Integer 类型
Dim integerValue As Integer = 456
Console.WriteLine("Integer 数据类型: " & integerValue & ", Value: " & integerValue)
' Single 类型
Dim singleValue As Single = 3.14159
Console.WriteLine("Single (Double) 数据类型: " & singleValue & ", Value: " & singleValue)
' String 类型
Dim stringValue As String = "Hello, World!"
Console.WriteLine("String 数据类型: " & stringValue)
' Date 类型
Dim currentDate As Date = Today
Console.WriteLine("Date 数据类型: " & currentDate & ", Value (yyyy-mm-dd): " & currentDate.ToString("yyyy-MM-dd"))
' Boolean 类型
Dim booleanValue As Boolean = True
Console.WriteLine("Boolean 数据类型: " & booleanValue & ", Value: " & If(booleanValue, "True", "False"))
End Sub
End Module
阅读全文