C++ On Prime or Not

by goodespeler.myopenid.com, October 15, 2008 11:10

This assignment has come to...

B04f7f475867f6b47a59b49dfabc0daf Talk
1
2
3
4
#include <iostream.h>
#include <stdlib.h>
#include <math.h>
...

C++ Prime or Not

by goodespeler.myopenid.com, October 08, 2008 12:38, 7 refactorings, tagged with Prime Numbers

This is a simple program to...

B04f7f475867f6b47a59b49dfabc0daf Talk
1
2
3
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 ...

B04f7f475867f6b47a59b49dfabc0daf Talk
1
2
3
4
#include <iostream.h>

int main() {
...

C++ Simple For Loop

by goodespeler.myopenid.com, October 06, 2008 23:10, 4 refactorings

Can someone check my for lo...

B04f7f475867f6b47a59b49dfabc0daf Talk
1
2
3
4
#include <iostream>
#include <iomanip>
using namespace std;
...

C++ Code Formatting

by goodespeler.myopenid.com, September 21, 2008 14:23, 4 refactorings, tagged with code formatting

Is there a nicer way of for...

B04f7f475867f6b47a59b49dfabc0daf Talk

PHP On Getter and Setter

by goodespeler.myopenid.com, August 12, 2008 17:58

Should you create a getter/...

B04f7f475867f6b47a59b49dfabc0daf Talk
1
2
3
4
<?php

$payload = array(array(
...

PHP Array and ForEach Loop

by goodespeler.myopenid.com, August 12, 2008 17:45, 1 refactoring, tagged with array, foreach, loop

Hi. I'm constructing an XML...

B04f7f475867f6b47a59b49dfabc0daf Talk
1
2
3
4
<?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...

B04f7f475867f6b47a59b49dfabc0daf Talk