Loading

Highest and Lowest Number Determiner 3.0 Using Two Dimensional Array

Submitted by: 
Language: 
Visitors have accessed this post 4129 times.




Hi there thanks for visiting the site. About this code I called it

Highest and Lowest Number Determiner 3.0

Using Two Dimensional Array updated my code from using one dimesional array to two dimensional array in C++. I find some difficulty at start try to understand the underlying code using two dimensional array finally I got the right code. I intended my work for those who are new in C++ prorgramming.

If you like my work send me an email at jakerpomperada@yahoo.com . I am also accepting programming jobs like programming assignments, projects and thesis in a very reasonable price.

People here in the Philippines can contact me through my mobile phonenumber at 09296768375 and my telephone number at home +63 (034) 4335081 .

Thank you very much and Happy Programming.

Regards,

Mr. Jake Rodriguez Pomperada, MAED-Instructional Technology
Programmer, Teacher and Computer Techncian

Download Code: 

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

thank you so much!

i want codes!!!!!

#include
#include
void input(int values[2][5], int high, int low);
void repeat(char& reply);

int main()
{
char reply;

int values[5][2], high, low;
clrscr();
cout cout cout cout cout input(values[2][5],high,low);
repeat(reply);
cout for(int i=0; i for(int n=0; n cout

cout cout cout cout

cin.get();
cin.get();

return 0;
}
void input(int values[2][5], int high, int low)
{
high=values[0][0];
for(int i=0; i for(int n=0; n if (high high=values[i][n];
low=high;
for(int i=0; i for(int n=0; n if (low>values[i][n])
low=values[i][n];
}
void repeat(char& reply)
{
do
{
cout cout cin >> reply;
}while ((reply=='Y')||(reply=='y'));

return 0;
}

//here's my code for an array using a function, but it wont run..
kuya can you help me to program this?

help me...

Pages

Add new comment

Filtered HTML

  • You may insert videos with [video:URL]
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <asp>, <c>, <cpp>, <csharp>, <css>, <html4strict>, <java>, <javascript>, <mysql>, <php>, <python>, <sql>, <vb>, <vbnet>. The supported tag styles are: <foo>, [foo].
  • Lines and paragraphs break automatically.

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.