Forum: C# Feb 7th, 2008 |
| Replies: 18 Views: 1,354 guys you have been great help....i am gonna try and write that program now, and i'll post it later, and get your feedback |
Forum: C# Feb 7th, 2008 |
| Replies: 18 Views: 1,354 would anyone recommend C# for Dummies? |
Forum: C# Feb 7th, 2008 |
| Replies: 18 Views: 1,354 so i can type all the functions within the program without objects?
I didn't know that.
so I can go on an type the function that records the number of withdrawals before even looking at objects? |
Forum: C# Feb 7th, 2008 |
| Replies: 18 Views: 1,354 ok that sorta makes sense
but i am still lost....
I am the c# class right now, and i can't learn in here cuz my teacher is from china and i can't understand him so i have to teach myself(or get... |
Forum: C++ Feb 7th, 2008 |
| Replies: 1 Views: 1,641 you can if statements
int balance;
if (item=1){
balance=user_amount-0.75;
}
that should get you started |
Forum: C# Feb 7th, 2008 |
| Replies: 18 Views: 1,354 That is what I typed. I couldn't go any further because I really don't understand objects. If someone could explain it, or give me an example within the project to get me started, I would greatly... |
Forum: C# Feb 6th, 2008 |
| Replies: 18 Views: 1,354 Suppose that you are developing a class, Account, from which a customer can
withdraw money. The Account class needs to keep track of the number of
withdrawals that have occurred in each customer’s... |
Forum: C++ Feb 5th, 2008 |
| Replies: 16 Views: 2,509 I used Dev C++, and sometimes it doesn't compile functions. I would suggest Visual C++, whatever version you want. I use 2005. |
Forum: C++ Feb 5th, 2008 |
| Replies: 3 Views: 843 Yea man, read the stickys. If you want help with homework, you have to show that you are actually trying. So try and write what you can, post it, and we will help. |
Forum: C# Jan 31st, 2008 |
| Replies: 2 Views: 530 The average, and the tester....i just dont really understand the problem |
Forum: C# Jan 30th, 2008 |
| Replies: 2 Views: 530 My school for some reason taught me C++ last semester, and now i have to learn C#. I have to do a lab assignment....here it is and here is what I have.
You are required to develop a program that... |
Forum: C++ Nov 29th, 2007 |
| Replies: 7 Views: 909 Well, what does your code look like as of right now? |
Forum: C++ Nov 29th, 2007 |
| Replies: 3 Views: 713 I need to change the AvgGrade2 function to work with what is shown, but i do not know what to edit for it to work correctly.
#include <iostream>
#include <fstream>
#include <string>
#include... |
Forum: C++ Nov 6th, 2007 |
| Replies: 7 Views: 19,965 Thanks this has helped a bunch. I am finally starting to understand all or this. |
Forum: C++ Nov 6th, 2007 |
| Replies: 7 Views: 19,965 My program works fine now...until you enter a space..
#include <iostream>
#include <string.h>
using namespace std;
int arraylength(char my[]);
int main(){ |
Forum: C++ Nov 6th, 2007 |
| Replies: 7 Views: 19,965 Is there a function used to calculate the length of an array. For instance, if someone enters John, the function outputs 4. Or is it necessary to write a function to do it, and how is it done. (This... |
Forum: C++ Oct 30th, 2007 |
| Replies: 7 Views: 4,653 i have figured out the majority of the program but i just got stuck. so far i have
#include <iostream>
#include <cmath>
using namespace std;
int line(int, int);
int average(int, int);
... |
Forum: C++ Oct 25th, 2007 |
| Replies: 7 Views: 4,653 For a class I am taking I need to produce 1000 random numbers and store them in an array. I am totally lost and need some help. If someone can get me started on the program it would help me. Also, i... |