Forum: C++ Apr 17th, 2009 |
| Replies: 3 Views: 297 i am new to c++ and wonder about how i create a file for example
string flight;
cin>>flight;
flight=flight+".txt";
ofstream myfile;
myfile.open(flight);
instead of having a fixed name like... |
Forum: C++ Apr 15th, 2009 |
| Replies: 3 Views: 233 thanks a lot for quick reply, it works . really amatuer mistake but i will get lot of them. java seems so simple compare to c++, maybe thats why they say java is kinder garden stuff |
Forum: C++ Apr 15th, 2009 |
| Replies: 3 Views: 233 i have following code, i am starting a college project and need help
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
class ba146{
private:
int capacity;
int... |
Forum: Java Dec 10th, 2008 |
| Replies: 3 Views: 2,913 I imported java.lang.Object
and where and what jar package i should download? |
Forum: Java Dec 9th, 2008 |
| Replies: 3 Views: 2,913 Hi I have to make a program to parse html document and check for broken links.
I did the first part and now wondering is there a method or class that checks if the link is valid?if not I assumed I... |
Forum: Assembly Nov 28th, 2008 |
| Replies: 1 Views: 503 You need tasm and tlink. Google them. |
Forum: Assembly Nov 28th, 2008 |
| Replies: 1 Views: 579 I have an array of strings. I want to find an element of array How do I do that? Here is what I tried, it should print out anything but its still does.
.model small
.stack
.data
goldenboard db ... |
Forum: Assembly Nov 17th, 2008 |
| Replies: 1 Views: 635 Hello, I need help with a puzzle I am trying to make in assembly. the description is down below
There is a famous puzzle invented in the 19th century which you may have seen, or indeed tried to... |