
the specific programming language to do this with is Visual Basic
what formula? specify what you mean
Hydrostatic pressure= density or specific gravity *gravity *submersion height.
Total pressure=hydrostaic pressure + atmospheric pressure.
Private Sub SurroundingSub()
Dim g As Double = 9.8
Dim spGravity As Double = Convert.ToDouble(textBox1.Text)
Dim depth As Double = Convert.ToDouble(textBox2.Text)
Dim atmPressure As Integer = 1
Dim hydrostaticPressure As Double = spGravity * g * depth
Dim totalPressure As Double = atmPressure +
hydrostaticPressure
MessageBox.Show("The hydrostatic pressure is " &
hydrostaticPressure & " atm" & "and total pressure is "
& totalPressure)
End Sub
Please rate it if the above solution helps you in any way or if you have any concerns comment it, I will help you through again.
the specific programming language to do this with is Visual Basic what formula? specify what you...
The questions below deal with Microsoft Visual Studio 2012
Reloaded, under the Visual Basic programming language. The book
ISBN number that I am using is: 978-1-285-08416-9 or the UPC code
is: 2-901285084168-1.
Question 1
Visual Basic 2012 is an object-oriented programming language,
which is a language that allows the programmer to use
____________________ to accomplish a program�s goal.
Question 2
An application that has a Web user interface and runs on a
server is called a(n) ____________________ application.
Question 3...
Visual Basic Programming
Step 1-2 not important, it's just file naming.
3. Form contains nine Labels, one TextBox, and three Button controls. You use labels to let user know what to enter and what will be displayed; TextBoxes to input a number between 1 and 99. Buttons to Calculate change. Clear Input and Exit program. See below Form Layout with Controls for more details 4. Declare variables to store the entered value in TextBox, and what will be displayed in...
Visual Basic Programming
Step 1-2 not important, it's just file naming.
3. Form contains nine Labels, one TextBox, and three Button controls. You use labels to let user know what to enter and what will be displayed; TextBoxes to input a number between 1 and 99. Buttons to Calculate change. Clear Input and Exit program. See below Form Layout with Controls for more details 4. Declare variables to store the entered value in TextBox, and what will be displayed in...
Problem Statement You are to create a Visual Basic(VB) project for a census bureau to obtain and analyze household income survey data within the Pittsburgh area (including Morgantown Ky). Data Collected: Home identification code (4 alphanumeric characters) – required Program should generate it using a random number generator. You won’t use this anywhere it just need to be generated. Generate the first number in the Form Load event and then each subsequent number in the button click. See attached code...
If you’re using Visual Studio Community 2015, as requested, the instructions below should be exact but minor discrepancies may require you to adjust. If you are attempting this assignment using another version of Visual Studio, you can expect differences in the look, feel, and/or step-by-step instructions below and you’ll have to determine the equivalent actions or operations for your version on your own. INTRODUCTION: In this assignment, you will develop some of the logic for, and then work with, the...
could you please help me with this problem, also I
need a little text so I can understand how you solved the
problem?
import java.io.File; import java.util.Scanner; /** *
This program lists the files in a directory specified by * the
user. The user is asked to type in a directory name. * If the name
entered by the user is not a directory, a * message is printed and
the program ends. */ public class DirectoryList { public static...
Overview: You will be writing classes that implement a playlist simulation for a music streaming app.The Playlist class will contain a dynamic array of Song objects, and the Song class contains several pieces of information about a song. You will need to: 1) Finish the writing of two classes: Song and Playlist. The full header file for the Song class has been provided in a file called Song.h. 2) Write a main program (filename menu.cpp) that creates a single Playlist...