Why not working?

Solved! Thank You!
Last edited on
cout<< no1 <<", " << no2 << "& " << no3 << "." << endl;

and extra } on line 22
ARR Still not working T_T
closed account (z05DSL3A)
Use code tags to post your code:
[code] your code...[/code]

Tell us what errors/warnings you are getting when compiling and or the problem you are having with the program.

but just for starters
1
2
3
void main() {
int max(int x, int y, int z);
int min(int x, int y, int z);

should be
1
2
3
4
int max(int x, int y, int z);
int min(int x, int y, int z);

int main()



How To: Ask Questions The Smart Way
http://www.cplusplus.com/articles/how_to_ask/
closed account (z05DSL3A)
and in the future DO NOT delete the original post.
Topic archived. No new replies allowed.