Forum: C++ Dec 5th, 2004 |
| Replies: 47 Views: 156,610 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 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 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 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 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 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 //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 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 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 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 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 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 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 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 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 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 #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 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 Narue, maybe just a hint then? cuz ive tried some things, unlucky so far. |
Forum: C++ Oct 31st, 2004 |
| Replies: 5 Views: 2,586 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 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 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 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 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 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 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 #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 Thx, and its that iostream.h works, just not properly ;P |
Forum: C++ Oct 30th, 2004 |
| Replies: 40 Views: 7,619 EEEK
#include <iostream>
using std::cout;
using std::endl;
using std::cin;
int main()
{ |
Forum: C++ Oct 30th, 2004 |
| Replies: 40 Views: 7,619 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 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 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 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 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 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 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 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 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 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 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... |