Search Results

Showing results 1 to 40 of 67
Search took 0.01 seconds.
Search: Posts Made By: N3wbi3C0d3r
Forum: C++ Dec 5th, 2004
Replies: 47
Views: 156,610
Posted By N3wbi3C0d3r
HeHe, im still running into some toruble learning, casue the tutorial doesnt assign home work, and im bad at creating homework on stuff i dun now, so i have to ask one of my 3 freinds who are...
Forum: C++ Dec 4th, 2004
Replies: 47
Views: 156,610
Posted By N3wbi3C0d3r
Im thinking maybe, how to do a graphical base to what you do, like how to do color box's pixels and how to change font to different styles and colors. :mrgreen: Not exactly what ima be using for a...
Forum: C++ Nov 29th, 2004
Replies: 47
Views: 156,610
Posted By N3wbi3C0d3r
FireNet, your like the best at this, you knew i needed it. Im working on an FStream project, this helps alot!
Forum: C Nov 20th, 2004
Replies: 10
Views: 6,085
Posted By N3wbi3C0d3r
Awsome, my school is being a pest so ill try to make around it, they have Novell to keep us from installing anything, but we can download to our server sapce on the Student Server. Should alow me to...
Forum: C++ Nov 17th, 2004
Replies: 4
Views: 1,739
Posted By N3wbi3C0d3r
I was using a C++ Reference, i didnt understand it ;P. So until you can find a user-freindly to nubes tutorial on C++ im stucj in a ditch, i've searched high and low of the net, and the one im using...
Forum: C Nov 17th, 2004
Replies: 10
Views: 6,085
Posted By N3wbi3C0d3r
For one the links dont work, missing page. (Related to down site??)
For two i meant if you had any servers running for people to connect to. :p
Forum: C++ Nov 12th, 2004
Replies: 4
Views: 1,739
Posted By N3wbi3C0d3r
//Program to collect and hold data on CD's
#include <iostream>
#include <fstream>
using std::cout;
using std::cin;
using std::endl;
using std::ifstream;

int main() {
int QA;
Forum: C Nov 12th, 2004
Replies: 10
Views: 6,085
Posted By N3wbi3C0d3r
Ok, but i have a question about one of your programs, its the chat one, do you have any servers for it?
Forum: C++ Nov 9th, 2004
Replies: 19
Views: 14,593
Posted By N3wbi3C0d3r
A GREAT free C/C++ Compiler is Dev C++ 4.9.9.0, i love it, its great!
Forum: C++ Nov 7th, 2004
Replies: 4
Views: 2,176
Posted By N3wbi3C0d3r
Ok, ill try to do as many of theese as possible. im ean all of em ;P
Forum: C++ Nov 6th, 2004
Replies: 4
Views: 2,176
Posted By N3wbi3C0d3r
Noone posted on it, and its going down the list, just posting to bring it back up.
Forum: C Nov 5th, 2004
Replies: 10
Views: 6,085
Posted By N3wbi3C0d3r
Just plain text would be fine. If its on your site, and its up soon, let me know and ill just get it from there.
Forum: C++ Nov 4th, 2004
Replies: 4
Views: 2,176
Posted By N3wbi3C0d3r
I learn faster when i have a motive to learn. Well if i have a project that uses all of the tutorial i use, i will be motivated to read sections and use it and make a full on project. I use...
Forum: Legacy and Other Languages Nov 4th, 2004
Replies: 27
Views: 63,284
Posted By N3wbi3C0d3r
Ok i did Command.com and it gave me
C:\WINDOWS\System32\command.com
C:\WINDOWS\System32\AUTOEXEC.NT. The system file is not suitable for running MS-DOS and Micosoft Windows applications. Choose...
Forum: C++ Nov 2nd, 2004
Replies: 5
Views: 2,248
Posted By N3wbi3C0d3r
One quick thing i saw was when you did
cout << "\n length;"
cout << "\n width;"
cout << "\n depth;"
cout << "\n total surface area;"
you put the ; behind the " its sposed to look like this...
Forum: Legacy and Other Languages Nov 2nd, 2004
Replies: 27
Views: 63,284
Posted By N3wbi3C0d3r
When i run the program QuickBasic 7.1 (or any other versions for that matter) it says something about a Windows NT file cannot open the dos file. Never knew there was a dos shell in XP thaught just...
Forum: C++ Nov 1st, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
#include <iostream>

using std::cout;
using std::endl;
using std::cin;

int main()
{
cout << "Full box:\n";
for ( int a=0; a<5; a++ ) {
Forum: C++ Oct 31st, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
cout << "**********" << endl;
cout << "Pyrimid:\n";
for (int a=5; a>0; a--) {
for (int b=0; b<9; b++)
cout << " ";
cout << "\n";
for (int c=9; c>0; c--)...
Forum: C++ Oct 31st, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
Narue, maybe just a hint then? cuz ive tried some things, unlucky so far.
Forum: C++ Oct 31st, 2004
Replies: 5
Views: 2,586
Posted By N3wbi3C0d3r
http://www.geocities.com/SiliconValley/Software/5562/
for an example, 5 minutes using google, and got it, just go to www.google.com and type in C Tutorial for Windows, you will get alot of good one....
Forum: C++ Oct 31st, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
No, lol, got it thx, didnt even read it that hard to see it. now comes the pyrimid, and i have NO idea on how to do it. Maybe you can gimme an algorithm of it, and ill translate it into code.
Forum: C++ Oct 31st, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
for (int a=1; a>=5; a--) {
for (int b=1; b<=a; b++)

Wich one of these two lines is incorect, i've tried switching things around many times, nothing's worked so far, each time just gives...
Forum: C++ Oct 31st, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
Thankyou, tried taking 0 and putting in 1, but it was so late last night, and i didnt press compile i guess, but now that part works, and the next drawing will be a peice of cake.
Forum: C++ Oct 31st, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
cout << "Gradual increase:\n";
for (int a=1; a <= 5; a++) {
for (int b=0; b <= a; b++)
cout << b;
cout << endl;
}
cin.get ();
}

Shows up as :
Forum: C++ Oct 31st, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
Disregard those post's, im working on the:
1
12
123
1234
12345
Right now ;P
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
fixed most of the error's, heres the first two ,almost perfect combind, just focus on the second one tho.

#include <iostream>

using std::cout;
using std::endl;
using std::cin;

int main()
{
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
#include <iostream>

using std::cout;
using std::endl;
using std::cin;

int main()
{
cout << "Empty box:\n";
for (int a=5; a>0; a--) {
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
Thx, and its that iostream.h works, just not properly ;P
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
EEEK

#include <iostream>

using std::cout;
using std::endl;
using std::cin;

int main()
{
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
OOOO, forgot, you never answered the question, can i do all of the drawings in one file? or am i going to have to do it in seperate files?
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
GOT IT, i used your code, to get cin.get () to work, i did using std::cin; and then added cin.get ();!!! IT WORKS, thankyou, i will ry to do the others now;)
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
I asked one of my friends, hes been programming in C+ for over 20 years, says your supposed to use <isostream.h> and on my side, i guess i have to do the code slightly different, but your part ata...
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
Sometimes even the good proggramers mess up, ok i tried it and it doesnt have cin.get (); and return 0; in it, so it just opens and closes, not knowing how to do it i just added em, but your using...
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
Oh, got it all compiled, but i ran into a spot of trouble, i dont know how to get the first loop "m" to endl; every time..
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
All of the drawings, put them all in one file, and run it, and they all show up.
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
One other thing, is it possible for me to do it ALL inside ONE file?
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
Thx, that got me outs the spot, it just hit me as i read that part, you gotta do a loop inside of a loop, lol
Forum: C Oct 30th, 2004
Replies: 10
Views: 6,085
Posted By N3wbi3C0d3r
Aight, Can you take all the parts and put them together in a file? Would be nice :)
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
Ok, im now officialy lost in the code

// countdown using a for loop
#include <iostream.h>
int main ()
{
for (int n=5; n>0; n--) {
cout << n;
}
for (int n=5; n>0;...
Forum: C++ Oct 30th, 2004
Replies: 40
Views: 7,619
Posted By N3wbi3C0d3r
NVM, re read it, set it up wrong on the line of
for (int n=5; n>5; n--) {
sposed to be
for (int n=5; n>0; n--) {

But, now comes the problem, how to instead of:

// countdown using a for loop...
Showing results 1 to 40 of 67

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC