Print in vb is an output statement. Under the WINDOWS graphical interface, this statement is not necessary; and in the VB.NET version, Print as a print output no longer exists.
The operating environment of this tutorial: windows7 system, Dell G3 computer, VB2012.
The Print statement is an output statement (print statement) in the Basic language. Under the WINDOWS graphical interface, this statement is really unnecessary. In the VB.NET version, Print as a printout no longer exists.
Let’s introduce print in VB through several examples:
The simplest and most commonly used format as an output statement:
Print 表达式
Example 1: Output text type The result displayed in the form of constant
Print "你好"
is as shown below:
The result displayed in the form of output numeric type constant
Print 999
is as follows Figure: (The output is a numerical value, the system automatically outputs a space before the numerical value)
Recommended: " Programming Video"
The above is the detailed content of What does print mean in vb. For more information, please follow other related articles on the PHP Chinese website!