Hi all,
I need some help finishing this program, I know it's easy but I'm new in C++ and programming.
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
const int arraysize = 10;
int a[arraysize] = {11,22,33,44,55,66,77,88,99,100};
This is the start of my program ; a giving array which a want the resault to be the highest and the lowest numbers in it like this:
Highest number is: ******
Lowest number is: ******
If somebody can finish the code for me, I'll appreciate it.