Blog Posts on program project
Percent:
Compute Your GWA (General Weighted Average) by teachmeonline on Apr 2, 2011Here is the download link:(note: you need to register first)CLICK HEREanyways, here is the code for that program:/******************************************GRADES*********************************************************************COMPUTER***********...
ATM Program for Peghie by teachmeonline on Jan 10, 2011 //TITLE OF THE ACTIVITY IS: APPLICATION NUMBER 1#include <windows.h> #include <iostream.h>#include <conio.h>#include <string.h>#define m "electric bill"#define n "telephone bill"#define b "credit card bill"using namespac...
Bubble Sort in C++ by teachmeonline on Jan 10, 2011What is Bubble Sort?In the bubble sort, as elements are sorted they gradually "bubble" (or rise) to their proper location in the array, like bubbles rising in a glass of soda. The bubble sort repeatedly compares adjacent...
Example of Bubble Sort C++ by teachmeonline on Jan 10, 2011 #include<iostream.h>#include<conio.h> // Bubble Sort Function for Descending Order void BubbleSort(apvector <int> &num){ int i, j, flag = 1; // set flag to 1 to start f...
Bubble Sort in C++ by teachmeonline on Jan 10, 2011What is Bubble Sort?In the bubble sort, as elements are sorted they gradually "bubble" (or rise) to their proper location in the array, like bubbles rising in a glass of soda. The bubble sort repeatedly compares adjacent...
ATM Program for Peghie by teachmeonline on Jan 10, 2011 //TITLE OF THE ACTIVITY IS: APPLICATION NUMBER 1#include <windows.h> #include <iostream.h>#include <conio.h>#include <string.h>#define m "electric bill"#define n "telephone bill"#define b "credit card bill"using namespac...
Example of Bubble Sort C++ by teachmeonline on Jan 10, 2011 #include<iostream.h>#include<conio.h> // Bubble Sort Function for Descending Order void BubbleSort(apvector <int> &num){ int i, j, flag = 1; // set flag to 1 to start f...
An ATM Program for Rovina by teachmeonline on Dec 26, 2010An ATM Program for Rovina Lacuna//atm program-Rovina Lacuna.//note:password is louisse//headers#include <stdlib.h>#include <conio.h>#include <iostream.h>#include <string.h>//headears/*declaration, variables*/int sbal=100000,cb...
An ATM Program for Rovina by teachmeonline on Dec 26, 2010An ATM Program for Rovina Lacuna//atm program-Rovina Lacuna.//note:password is louisse//headers#include <stdlib.h>#include <conio.h>#include <iostream.h>#include <string.h>//headears/*declaration, variables*/int sbal=100000,cb...
Converter Using C Program by teachmeonline on Nov 5, 2010Source codes by: GlennNote: This codes should work using Dev-C++ compiler./***************************************** Name: A project in CPN Author: Glenn Von C. Posadas Date: 29/09/10 14:32 Description: a 3...


