#include <iostream> #include <cmath> #include <vector> ...
C++ Optimizing another Project ...
#include <iostream> using std::cout; //Challenge: Add all the natural numbers below one thousand that are multiples of 3 or 5. ...
C++ Optimizing a Project Euler ...
Hello! New here. Been stu...
#include <string> #include <fstream> #include <iomanip> ...
C++ Dynamic Programming with C++
I am trying to use dynamic ...
#include <iostream> #include <vector> using namespace std; ...
C++ Simple Quiz
This is a working game, but...
void drawStatusBar(char* text, int x, int y, int current, int max)
{
dbText(x, y-14, text);
...
C++ drawStatusBar() function fo...
First post!
Just curio...
// this is in the global scope of my program. normally accepted as bad code, // but it seems to make sense in the context of an embedded platform. // "global" cache ...
C++ String parsing in AVR-GCC
I'm working on interfacing ...
// The required structs
struct linkedlist
{
...
C++ Optimal removal from linked...
I'm really concerned about ...
#include <iostream> #include <vector> #include <algorithm> ...
C++ The 3n+1 problem
What improvements can be ma...
Exactly what the title says. I don't want to know what your "project solutions" are, or your "programming solutions"; I need to know what a solution file is and why it's used and how. In the vast, vast, internet nobody has seemingly ever answered this question. I have looked... everywhere. ========================================================================================= ...
C++ what is a project "sol...
Exactly what the title says...
_
C++ what is a project "sol...
Exactly what the title says...
using namespace std; #include <iostream> void main () ...
C++ While Loop problem
Without the while loop, it ...
void MainDialog::OnTickTimer(wxTimerEvent& WXUNUSED(e))
{
const wxLongLong ElapsedTime = wxGetLocalTime() - m_TimerStartTick;
...
C++ Update controls on timer tick
What I'm doing is updating ...
#include <iostream.h> #define arrMax 100 ...
C++ dada
for (i=0; i<n; i++)
...
4d Ø" ¡  > X r  ´ À Ø æ ò ( H j  ¤ ¼ Ê è ø , > R z ’ ¼ Î & * < P v œ ¦ º Þ R ¢ N š ö H ˜ ð f Æ & H ’ à ^ ² ö < Œ â ...
C++ AndroidManifest
Code to re-skin Android Nex...
// Original method int monster() ...
C++ Return in the middle of an ...
I have a very long method, ...
bool Translations::compatibleNICodes(const Rule& rule,
const std::vector<std::string>& nicodes)
{
...
C++ Copy-Paste code with intern...
I'm struggling to reformat ...
//---------------------------------------------------------------- //FindShortestPath.cpp // ...
C++ PathFinding Algorithms
Old code, do not optimize.
int width = iplImage->width; int height = iplImage->height; ...
C++ exchanging 2 values
I am working with OpenCV an...
#include <fstream> using std::ofstream; #include <time.h> ...
C++ Game of Life
This is an implementation o...
// handlePathChange() is called whenever the URI changes void MVCApplication::handlePathChange() ...
C++ Re-implementation of the AS...
I'm trying to re-implement ...
#pragma once #include <iostream> ...
C++ c++ templates, Vector2, Vec...
for my 3d game :) still wor...
#include <iostream> #include <stdio.h> //#include <cstdlib> ...
C++ Calender
prints months calenders fro...
#include <map> #include <string> ...
C++ PHP associative array class...
looking for stability and s...
#include <iostream> #include <limits> #include <map> ...
C++ Breadth First Search (Textb...
This is the BFS example use...
Hello! I'm trying to yet a...