Finding Average Of 2 Largest Numbers?
Feb 21, 2009
I am supposed to create a program that inputs 3 numbers, takes the two largest and outputs an average of those two numbers using simple ifelse statements and logical operators only. I can't seem to get it. I've messed around for a few hours now and nothing seems to be working.
Here's what I have:
Private Sub btnCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalc.Click
Dim score1 As Double
[Code].....
View 8 Replies
ADVERTISEMENT
May 4, 2010
Need to calculate Average Plan Duration for the 3 Shipment TypesSo far i haveQuote:
'CALCULATING AVERAGE DURATION FOR STANDARD
Dim iAverage As Integer
Dim iAvgDuration As Integer
[code]....
I uses the information from the list boxes, (lbShipmentDuration) and (lbShipmentMethod) to calcualte the average Duration for each Shipment Type.
View 19 Replies
Jun 20, 2012
I enter numbers and Names into a text box and click 'add to list'. THe names go into a seperate listbox to the numbers.I then press 'show me the list' and i get to view my numbers and names listed in the two listboxs. I also have a button which averages the numbers in the numbers list box. But i dont know how to get it to work I will divide by the number of items in the list box.note: The average will be displayed in a label called: lblavg
Here is a picture of my code: http:puu.sh/CsED
I have tried:
For each item In lstListAges.Selecteditems
[code]....
View 6 Replies
Jul 19, 2011
My problem is I have a program that needs to input 3 values in 1 textbox only. I've been trying to figure that out for a couple of days now.this program must show the largest, smallest and average of 3 values.
Public Class Form2
Dim array() As Integer = New Integer() {a, b, c}
Dim a, b, c As Integer
[code]....
View 5 Replies
Feb 13, 2009
Am using VB 2005 and need to take an existing txt file which basically has 15 sets of data, each set containing a year (ie Year 1990) and a number below the year.When a user clicks the calculate button on a form, I need it to first list the average of all those numbers(not year) in the txt. And below that I need the largest number in the file to be displayed
View 4 Replies
May 9, 2009
[wink]You'll notice i dim'd n as integer = 0...[/wink] hehe I need a bit of advice on how to find the largest number stored as data in an array. For example vote(0) = 6, and vote(3) = 12, and lets assume all the other vote(n) are less. How do I pick out the big one?
[Code]...
View 8 Replies
Apr 7, 2009
Im trying to write a program that will do:
1.The average of the four numbers. This answer will be placed into a text box reserved for that value. This text box cannot be changed by the user.
2.The maximum and minimum values. These will be denoted by changing the color of the largest number green and the smallest number red.
3.The range of the numbers. The range is defined as the difference between the largest and smallest numbers. The range will be placed into its own text box, labeled as such. This text box cannot be changed by the user."
Im using visual studio 2008 and it has to be written in VB
View 35 Replies
Mar 10, 2010
I'm working on a simple miles-per-gallon calculator.
Module Module1
Sub Main()
Dim count As Integer = 0
[code]....
This compiles and works for 1 iteration, after many trials and tribulations . What I need to do is make it run for a user-specified number of iterations (the tankfuls variable) and store those separate results in separate locations in the arrays, then average all of those values at the end (find the overall average MPG).
View 2 Replies
Apr 26, 2011
having problems with my code it is showing wrong values on the shortest , longest and average sentence the values are not corresponding with my sentences.I need help this my code:
[Code]...
View 11 Replies
Feb 16, 2012
I am working on a project where i need to get the average of 6 numbers i enter in a ListBox. There is one ListBox, one button to get the average, and one label where the average is displayed. i need to use an array and I am using the Visual Basics Programming but i dont think it is that big of a difference.
View 5 Replies
Jul 12, 2009
I am having to average three numbers setting this up I need to use sub procedures. I cannot figure out what I am missing.
Public Class Main
Private Sub btnAverage_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAverage.Click
Dim num1, num2, num3 As Double
Dim average As Double
[code]....
View 3 Replies
Sep 26, 2009
I have a project and I need to record long jumps. I have 5 numbers but how do I average the greatest 3 of 5, I know how to average all 5. Also am I supposed to put Val for strings or not because only 0 shows up for when I put something in name but if I put a number it will show up a number
[Code]...
View 5 Replies
Apr 28, 2011
I'm trying to write a program that allows the user to enter 10 numbers into an input box and then the program will use a function to calculate the average of those numbers. I'm really illiterate when it comes to Visual Basic.
View 2 Replies
Nov 6, 2010
OK, so I've been given an assignment due for Monday, which was to create a console program which allows the user to enter an unknown quantity of numbers, then have the Mean, Median and Mode averages displayed of said group of numbers.
So far I've managed to get the Mean and Median to work, for both odd and even quantities of variables. I am however stuck on getting it to calculate the modal average! I don't really know how to approach this, would a structure with two fields, variable and quantity of variable, work?
Below is the code, I haven't made it display discrete of continuous data yet, I'm leaving that for the end.
Module Module1
Sub Main()
Start:
'Declare Variables
[Code].....
I imagine this is quite elementary for most of you, I unfortunately received no replies what-so-ever to my last thread...
PS: Why isn't there an option for UK in the two letter country codes?
View 5 Replies
Jun 13, 2011
I'm working on a Windows forms app that will average a set of numbers, the only catch is that there are 10 textboxes(4 in the example for times sake), and not all of the textboxes could be filled with a number...I know that if i had a given set of numbers:
Dim a, b, c, d As Integer
a = t1.Text
b = t2.Text
c = t3.Text
[code].....
View 2 Replies
Mar 11, 2010
I am new to VB and need to make a program that does the following:Write a VB.Net program that allows users to enter a series of numbers(separated by a comma) in a text box called series. When the users clicks the command button called Average, the program extracts the number one by one from the series and calculates the average, and outputs the average onto a textbox called Result.I understand how to get it to do the average, but how can I make the program count the numbers that I input and then divided by the sum? Also, how would i get it started.
View 2 Replies
Jan 8, 2012
i want to know the code for an average of numbers from 1 to a number entered?
View 31 Replies
Apr 15, 2011
I'm new to coding and i need to make a program that takes 3 percentages(numbers) and returns an average of the grades in letter format(A,B,C). This is what I have so far:[code]......
View 2 Replies
Mar 16, 2011
i am creating a maths program that works out five number summarys of a range of data. i am having trouble working out the smallest number in a group of numbers. i have used a bunch of if then statements to work out the maximum and i figured that by exchanging a few variables and swapping greater than signs for less than i could use the same code to work out the minimum, but all i get is zero, no matter what i input into my textboxes. below is the code i have used to work out the maximum number
If CheckBox1.Checked = True And CheckBox6.Checked = True Then
max = 0
min = 1000
[Code]......
View 14 Replies
Mar 23, 2011
i am creating a maths program that works out five number summarys of a range of data. i am having trouble working out the median in a group of numbers.so far i have used the code below to declare all the the inputs.
dim m as integer
no1 = Val(TextBox1.Text)
no2 = Val(TextBox2.Text)
no3 = Val(TextBox3.Text)
[Code]...
i am completly stuck for how to order the variables, and find the middle no.. as i am using 11 variables, the middle no would be the 6th in the order..
View 4 Replies
Mar 23, 2011
I am needing to locate a given set of numbers in a string, and have limited success, it is almost always finding the numbers that I want, but I need it to be more reliable.Below is a test program that I am using to test with and also 2 picures that may explain better that I can put into words.
[Code]...
View 6 Replies
Feb 12, 2011
I wrote this sub routine that is running, but it only returns the local Computer name and Serial number. Any one know the why to grab the Computer name and serial by IP address? I am using VB 2010.
[Code]...
View 2 Replies
Dec 21, 2011
I needed to make a program for finding prime numbers. The logic is that you have to put limits n & m and then LOOP and odd-integer P between n & m inclusive. I have a button to click on my form that displays 2 message boxes, one saying " enter upper limit" and the other say "enter lower limit". I need now to get the results of the odd prime numbers between the limits into a list box!
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code].....
View 39 Replies
Apr 23, 2011
I have a program I'm working on (a chance game) that has 5 random numbers generated. I need to think of an expression to check to see if three of those numbers are equal. The random values are not an array, they are 5 separate variables. I have the code written to compare if there are two matching ones, but am having trouble thinking past that. [Code]
View 3 Replies
Jun 7, 2009
I am trying to create a program that can figure out all the different combinations of numbers in a string.
View 2 Replies
Jun 15, 2010
I want to include an average in a column where the average ignores zero values in a report cell where the column may have
17
19
0
[code].....
I want 16, not 11 so (17 + 19 + 12 + 13 + 19) / 5 not (17 + 19 + 0 + 0 + 12 + 13 + 19) / 7 Something like this if it would work.
=SUM(Fields!fieldname.Value) / Count(iif(Fields!count_cycle_per_hour.Value >= 0,Fields!fieldname.Value,0))
Essentially just average everything in the column NOT a zero?
View 4 Replies
Sep 8, 2009
I'm working on a function to return a exponential average and there are a lot of examples of exponential moving averages but they all start with a moving average that is just the mean as a lead in to calculating the continuing moving average. I needed just a exponential average of a value set. After Googling my Bing off I still haven't seen anything so here is my attempt at a basic exponential average. Is this correct? Are there any errors? I have seen some text about adding a smoothing value to change the curve of the exponential average but not how that would be implemented.
[Code]...
View 5 Replies
Mar 26, 2012
I put comments on the average output since I kept getting error messages about that. My out keeps saying:
Maximum value: 33
Minimum value: 33
what am I doing wrong?
Option Explicit On
Option Strict On
[Code]...
View 2 Replies
May 10, 2011
I'm in a computer science class, and we are writing simple programs using Visual Basic 2008. I am really inept when it comes to this, as I have never done it before. I need to write a program that: "Asks the user for 5 numbers and computes the average. It then displays the average with an appropriate message before the average."
I have been really close with this, but I can't get the numbers to add up, then divide by 5, and display a pop up message.
View 13 Replies
Jun 19, 2009
I have two tables: a schedule table that contains information about how an employee is scheduled and a numbers table in which each number corresponds to a date.
[Code]...
I can do this on the SQL side or the code side. I have Linq at my disposal if I need it. The table doesn't need to be compiled by SQL. This will happen dynamically on a website and should be as efficient as possible.I don't want to have to iterate through each and look for breaks in contiguous days if I don't have to.
View 4 Replies