Question: Write a program in Qbasic W-loop to print "Highest Scorers" amongst 4 students with 3 subjects per student.
Date Posted: Oct 24th, 2011
Requester: Kousik Das
Solution
LET STUDENT = 4
LET I = 1
LET SC = 1
LET HIGHSC = 0
DO WHILE (I < STUDENT)
INPUT "ENTER STUDENT NAME"; N$
LET SUM = 0
INPUT "ENTER THE SCORE FOR SUBJECT1"; S1
INPUT "ENTER THE SCORE FOR SUBJECT2"; S2
INPUT "ENTER THE SCORE FOR SUBJECT3"; S3
LET SUM = S1 + S2 + S3
PRINT ""
PRINT N$, SUM
IF SUM > HIGHSC THEN
LET WINNER$ = N$
LET HIGHSC = SUM
END IF
I = I + 1
LOOP
PRINT ""
PRINT "THE LEADER IS "; WINNER$
PRINT "SCORE IS "; HIGHSC
Question: How these equation in fortran language {1} ax^2+bx+c=0 {2} almighty formular consider b^2<4ac
Date Posted: August 17,2011
Requester: Seidu seun
Solution
This Question had been solved below when requested by Akeem Adepoju. Scroll down this page.
Question: Write a Visual Basic program to convert from Decimal to binary:
Date Posted: June 11, 2011
Requester: Vivian A.
Solution
Public Class Form1
'This sub convert from decimal to Binary
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Dim r As Integer 'For storing remainder
Dim ans As Integer 'for storing division answer
Dim ss As String ' string for storing binary answer
Dim cc As Char() 'character array
ss = ""
binAns.Text = ""
If Val(dec.Text) > 0 Then 'make sure the user enter value greater than 0
Dim n As Integer = Val(dec.Text)
' convertion
If n > 1 Then
Do
ans = Math.DivRem(n, 2, r)
ss += r.ToString
n = ans
Loop While ans > 1
ss += "1"
'Re-arranging the characters
Dim i As Integer = ss.Length
cc = ss.ToCharArray()
For j = cc.Length - 1 To 0 Step -1
binAns.Text += cc(j)
Next
Else
binAns.Text = 1
End If
Else
MessageBox.Show("Enter value Greater than 0")
End If
End Sub
'This is sub to convert from Binary to Decimal
Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
Dim cc As Char() = bin.Text.ToCharArray
Dim ans As Integer = 0
decAns.Text = ""
For j = 0 To bin.Text.Length - 1
If Val(cc(j)) > 1 Then
MessageBox.Show("This is not a binary value")
Exit Sub
Else
Dim rCount As Integer = bin.Text.Length - 1 - j
ans += Val(cc(j)) * 2 ^ rCount
End If
' MessageBox.Show("no.:" + test.ToString)
Next
decAns.Text = ans
End Sub
End Class
Question: Write a program to compute Average of numbers. -Adelabu Lukman, University of Ado-Ekiti
Solution
QBASIC Input "How many Nos?", N | C- Language #include<stdio.h> | FORTRAN INTEGER N, I, K, S, A Write(*,*) 'Average = ',A End |
Using Visual solutions (Visual Basic and Visual C++)
Enter The Number Here
Average is
Note: names of Textboxes are m_no and m_av respectively
Having the form designed as above, Then insert the following code on clicking each command button:
Visual Basic Module Sub Okbutton() Sub Onsolve() Sub Onrefresh()
| Visual C++ global int n, s; Okbutton() Onsolve(){ Onrefresh(){ |
Question: Write a program to Calculate the Roots of a Quadratic Equation -
Requester: Adepoju Akeem, Federal Polytechnics Offa, Nigeria
Solution
X2 + X + = 0
1st Root is 2nd Root is
Textboxes are A, B, C, X1, X2 respectively.
Using Almighty Formula X = (-B+-SQR(B2 - 4AC))/(2A)
VISUAL BASIC Sub onsolve() | C-Language #include <stdio.h> |
FORTRAN INTEGER A, B,C, X1, X2
|
In case if you try any of the solution above and it doesn't work, do not shake, are you sure you did not make any syntax Error while typing the code?
Are you sure you are using the right compiler for the correct code? For example, Visual Basic coding may not work with QBasic Compiler/interpreter.