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
Use code tags to post your code:
[co
de]
your code...[/co
de]
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/
and in the future DO NOT delete the original post.
Topic archived. No new replies allowed.