Forum: C Sep 17th, 2005 |
| Replies: 0 Views: 1,204 hi there!
I need help about this machine problem... I need to make a program that deals with PERT\CPM (simulation) . any suggestions what kinda program that is related to this??? I was... |
Forum: C++ Oct 9th, 2004 |
| Replies: 1 Views: 2,350 greetings....
can any of you people give me some websites where i can take some C++ programmin' challenges(free)
-h3rtz- |
Forum: C++ Oct 9th, 2004 |
| Replies: 2 Views: 4,208 u just have to change .txt by .cpp and put it in bin folder... or you can go to command prompt then type edit (filename).cpp |
Forum: Computer Science Oct 8th, 2004 |
| Replies: 27 Views: 10,691 c++ is a good language to start on. not too hard for beginners...
-h3rtz- |
Forum: C++ Oct 8th, 2004 |
| Replies: 7 Views: 3,457 try these sites:
cprogramming.com
www.programmingtutorials.com/
cplus.about.com/
...or join forums now.... |
Forum: C++ Oct 8th, 2004 |
| Replies: 2 Views: 2,247 int value;
int num=1;
int sum=0;
while (num<=value) {
sum+=num;
num++;
}
cout <<"total is:" <<sum; |
Forum: C++ Oct 8th, 2004 |
| Replies: 6 Views: 10,974 do{
//prog. body here
} while (answer != 'n')
cout << "goodbye!\n"; |
Forum: C++ Oct 2nd, 2004 |
| Replies: 4 Views: 2,690 use a nested while lo0p...(much easier for me)
int i=1;
while(i<value){
int a=0;
while(a<i){
cout<<"*";
a++;
}
cout<<"\n"; |
Forum: C Sep 25th, 2004 |
| Replies: 1 Views: 1,430 hey!
....i'm creating a lo0p program right now. and i'm on the finishing touch part. i want the program to ask "press any key to continue" and when the user inputs any key, it'l return to the top... |
Forum: C++ Sep 25th, 2004 |
| Replies: 6 Views: 7,109 int x=1;
while(x<7){
int y=0;
while(y<x){
cout<<"*";
y++;
}
cout<<endl;
x++;
} |
Forum: C++ Sep 19th, 2004 |
| Replies: 2 Views: 14,854 ey there! i have a problem here regarding this maze stuff... i think using getch and gotoxy is not complicated. our teacher says he will give extra points to who can finish this.. can it be done... |