c++ 최대 최소값 구하는 법 좀 봐주세요 ㅠㅠ

SPiNiN 작성일 13.09.10 18:17:55
댓글 14조회 1,257추천 0

 #include <iostream>
using namespace std;

int main()
{
 int A[8] = {1,2,3,4,5,6,7,8};
 int i=0;
 int sum=0;
 int avr=0;
 

 while(i<=8)
 {
  cout << "Enter Numbers : ";
  cin >> A[i];
  i++;
  if(i==8)
   {
    break;
   }
 }
 
 sum = A[0]+A[1]+A[2]+A[3]+A[4]+A[5]+A[6]+A[7];
 avr = sum/8;
 cout << "Sum = " << sum << "\n";
    cout << "AVR = " << avr << "\n";

 int max=0;
 int temp=0;

 while(i<=8)
 {
  
  temp=A[i];
  if(temp>max)
  {
   max = temp;
  }
  
 i++;
  
 }
 
 cout << "Max = " << max << "\n";


 return 0;
}

 

 

여기서 자꾸 max값이 어떤 값을 입력하던 초기화된 값 0만 나옵니다

어떻게 해야하나요 ㅠㅠ 137880458660623.jpg

SPiNiN의 최근 게시물

자유·수다 인기 게시글