Forum: C++ May 20th, 2005 |
| Replies: 13 Views: 3,402 Ah Thanks you help me a lot!
Thank you |
Forum: C++ May 19th, 2005 |
| Replies: 13 Views: 3,402 But I think I need to use the arrays because there are 30 records. I need to sort the records by names. I got the Last name down but what should I do to get that person other records along with his... |
Forum: C++ May 17th, 2005 |
| Replies: 13 Views: 3,402 Hi everyone,
I ran into another problem. Im trying to sort the employees records by using the bubble sort with arrays and I just got the names arrays down but how would I get the rest of the... |
Forum: C++ May 9th, 2005 |
| Replies: 13 Views: 3,402 ohhhh. Im an idiot. Thanks |
Forum: C++ May 9th, 2005 |
| Replies: 13 Views: 3,402 Yeah I know there is only 30 record but Its only reading 13 records. At first it was at a array of 30 but it would read up to 13 records and still had 0's so change it to 100 but still the samething ... |
Forum: C++ May 9th, 2005 |
| Replies: 13 Views: 3,402 I'm sorry for being dimwitted. Ok the first problem is that when I go in to my menu to choose read option it would skip the 0's in the first column for example
000001 Moshiur Ahmed I CA 90805 40... |
Forum: C++ May 8th, 2005 |
| Replies: 13 Views: 3,402 I'm running into to this problem where the fstream is suppose to read data off a file to store in arrays. I cant continue with my project until the program reads it right. It is skipping some of the... |
Forum: C++ Apr 30th, 2005 |
| Replies: 2 Views: 4,112 >"I'm going to kill your computer if you dont enter the right password!!!"
--- well it made me laugh a little. I change some of the wording.
Okay I think I few some of the bugs but I dont know if... |
Forum: C++ Apr 24th, 2005 |
| Replies: 2 Views: 4,112 Well I got the password code right, I think.
I have a few problems
1) it wont close properly
2) Can someone point me in the right direction to find a tutorial that teach me how to only let the... |
Forum: C++ Mar 19th, 2005 |
| Replies: 3 Views: 1,952 Hi thanks for the replys
Im sorry if I wasnt clear. This is what it says in the book.
"This project will give you an introduction to the use of the WHILE repetition statement. Your Program is to... |
Forum: C++ Mar 18th, 2005 |
| Replies: 3 Views: 1,952 Hi this is tetsu here
I need a little help regarding input and output. I am trying to write a program to read information from a text file as long as there is names and numbers next to them (test... |
Forum: C++ Mar 12th, 2005 |
| Replies: 11 Views: 5,444 Wow. That seems so simple yet it so complicated to me. In 1995, i dont think i even touch a computer back then. |
Forum: C++ Mar 12th, 2005 |
| Replies: 11 Views: 5,444 Hey Narue
I still could do it the way you been trying to help me with but I did mange to get the pyramid to form. I even got it to for a diamond. I wan to thank you what you did up til now... |
Forum: C++ Mar 10th, 2005 |
| Replies: 11 Views: 5,444 for i = 0 to N do means for (i = N)
{
for j = 0 to spaces do means for (j = spaces)
{
print ' ' means cout << ' ';
}
for j = 0 to stars do means for(j = stars)
... |
Forum: C++ Mar 7th, 2005 |
| Replies: 11 Views: 5,444 for i = 0 to N do
for j = 0 to spaces do
print ' '
for j = 0 to stars do
print ' '
print '\n'
Thanks for replying narue. Im just starting to learn about c++. Im trying to try... |
Forum: C++ Mar 6th, 2005 |
| Replies: 11 Views: 5,444 Hi this is my first post and I need help on my first program on making some shapes in c++ using for statement and using *. Its an simple for statement program but I got nothing. Im trying to making... |