No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
[code]#include <conio.h> #include <fstream.h> #include <iomanip.h> #include <iostream.h> ofstream fout; // output textfile declaration using namespace std; // ============================================================================= int main () { int i, count; char reply; double x[100]; fout.open ("array.txt"); // prepares output textfile // introduction for (i = 1; i <= 9; i++) { cout << endl; …
Private Sub cmdCalc_Click() Dim Commission_Percent As Double Dim Total_Commission As Double Dim Sales_Price As Integer Dim Highest_Commission as Integer Sales_Price = txtSales_Price.Text Total_Commission = Sales_Price + Commission_Percent If Sales_Price < Total_Commission Then [Total_Commission = Highest_Commission] End If lblTotal_Commission .Caption = Total_Commission End Sub
The End.
shuncyk