#include <iostream>
using namespace std;

...

C++ On while reads some integers a...

by Nathan, December 20, 2008 08:59 Star_fullStar_fullStar_fullStar_full

[Grrrrrr. Layout-troubles. ...

30a45c64b2ef288f7ec098c5fb353a22 Talk
#include <iostream>
using namespace std;

...

C++ On while reads some integers a...

by Nathan, December 20, 2008 08:53
30a45c64b2ef288f7ec098c5fb353a22 Talk
12345

C++ On while reads some integers a...

by hackerii.myopenid.com, December 19, 2008 20:17 Star_full
55502f40dc8b7c769880b10874abc9d0 Talk
#include <iostream>

int main(int argc, char **argv)
...

C++ On while reads some integers a...

by Adam, December 19, 2008 04:54 Star_fullStar_fullStar_fullStar_fullStar_full
A8d3f35baafdaea851914b17dae9e1fc Talk

C++ On Counting Sort

by pardus1, November 21, 2008 07:32

I did not understand why th...

D41d8cd98f00b204e9800998ecf8427e Talk
switch (V_VT(&var)) {
    case VT_BSTR:
        for (char *string = (char *)var.bstrVal; *string; string += 2) {
...

C++ On Stream ADODB recordset into...

by Adam, November 18, 2008 06:19

I don't know if it's any fa...

A8d3f35baafdaea851914b17dae9e1fc Talk

C++ On Prime or Not

by Adam, October 20, 2008 01:44

@santa

1. Quality of code...

A8d3f35baafdaea851914b17dae9e1fc Talk

C++ On Prime or Not

by santa, October 18, 2008 18:03

since it's ran on multiple ...

D41d8cd98f00b204e9800998ecf8427e Talk

C++ On Prime or Not

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

This assignment has come to...

B04f7f475867f6b47a59b49dfabc0daf Talk

C++ On Prime or Not

by Chris, October 15, 2008 00:37

This is 2 easy.

3d920d12e54fc518dcacabbccb2e6138 Talk
#include <sstream>
#include <curses.h>
#include <openssl/bn.h>
...

C++ On Prime or Not

by Adam, October 08, 2008 20:41

Just playing around with a ...

A8d3f35baafdaea851914b17dae9e1fc Talk

C++ On Prime or Not

by joshuamc, October 08, 2008 16:19

This is beyond my knowledge...

B04f7f475867f6b47a59b49dfabc0daf Talk
#include <iostream>
#include <openssl/bn.h>

...

C++ On Prime or Not

by Adam, October 08, 2008 15:50

A refactoring with basic I/...

A8d3f35baafdaea851914b17dae9e1fc Talk
#include <iostream>

int main(int argc, char **argv)
...

C++ On Simple For Loop

by Adam, October 07, 2008 03:15 Star_fullStar_fullStar_fullStar_fullStar_full
A8d3f35baafdaea851914b17dae9e1fc Talk
for (char a = 'A', int c = 0; a <= 'Z'; a++, c++) {	
...

C++ On Simple For Loop

by Eineki, October 07, 2008 01:46

Think at the for loop into ...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
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
#include <iostream.h>

int main() {
...

C++ On Simple For Loop

by Eineki, October 07, 2008 01:09

do you mean this way?

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
#include <iostream>
#include <iomanip>

...

C++ On Code Formatting

by Clueless, October 01, 2008 00:02

Using the whole std namespa...

490b81926bf5f0382a88214436725567 Talk
#include <iostream>
#include <iomanip>

...

C++ On Code Formatting

by kewl mcgregor, September 30, 2008 23:31

* Don't use #define when y...

6aa5c642f5e39fc4e4b282411b2a7032 Talk

C++ On Code Formatting

by Patch, September 24, 2008 01:46

I forgot to add the change ...

D41d8cd98f00b204e9800998ecf8427e Talk
#include <iostream>
#include <iomanip>

...

C++ On Code Formatting

by Patch, September 24, 2008 01:39

Let loops do the hard work ...

D41d8cd98f00b204e9800998ecf8427e Talk
// Count Sort in c++

...

C++ On Counting Sort

by evilteach.blogspot.com, September 01, 2008 13:18

I note that your code does ...

0bd5c1d9900046057ef1a31a12734a3a Talk
#include < iostream.h >
#include < stdio.h >
#include < conio.h >
...

C++ On Counting Sort

by Fluxus, November 07, 2007 10:37

You can use template to imp...

776160fbb8bda99799a240df27a2b548 Talk
//
// Author: tanaeem
//
...

C++ On Finding area of a circle wh...

by tanaeem, November 06, 2007 16:43

After searching internet I ...

Ab7f553dd6d8b41bc3819a0dcacb26d4 Talk
//#include<stdio.h>

#include<math.h>
...

C++ On Finding area of a circle wh...

by Yaverot, November 06, 2007 15:55 Star_fullStar_fullStar_fullStar_full

It is not a complete refact...

D41d8cd98f00b204e9800998ecf8427e Talk