#include <iostream.h> #include <stdlib.h> #include <math.h> ...
C++ Prime or Not
This is a simple program to...
for (char a = 'A', int c = 0; a <= 'Z'; a++, c++) {
cout << a << (c % num == 0 ? "\t\n" : "\t");
}
C++ On Simple For Loop
by goodespeler.myopenid.com,
October 07, 2008 01:20
That works. Why won't this ...
#include <iostream.h>
int main() {
...
C++ Simple For Loop
by goodespeler.myopenid.com,
October 06, 2008 23:10,
5 refactorings
Can someone check my for lo...
#include <iostream> #include <iomanip> using namespace std; ...
C++ Code Formatting
Is there a nicer way of for...
PHP On Getter and Setter
by goodespeler.myopenid.com,
August 12, 2008 17:58
Should you create a getter/...
<?php class ccForm ...
PHP Getter and Setter
by goodespeler.myopenid.com,
August 08, 2008 14:33,
7 refactorings, tagged with getter, setter, security
I'm new to the concept of g...

This assignment has come to...