c언어 해석 부탁드립니다 ㅠ
중국드립
2023.04.01
질문 제목 :
#include iostream
#define MAX(x,y) ((xy)? x: y)
#define MIN(x,y) ((xy)? x: y)
using namespace std;
int main()
{
int num[]={8,54, 11,-45,43,26,66,12,33, 65};
int counts=sizeof(num)/sizeof(int);
int max=num[0];
for(inti=1;icounts;i++){
max=MAX(max,num[i]); //1 2, 2 3, 3 4... 비교&;
}
cout최대값:maxendl;
cout\n----------------------------endl;
system(PAUSE); //기다림
return EXIT_SUCCESS;//EXIT_SUCCESS 0
}
c 언어 듣다가 객체지향언어란걸 듣는데요이게 도통 뭐라고 해석해야되는지 모르겠네요 ㅠ1.제목이랑
2.key 단어랑
3.key 단어 예문 - 특히 이게 뭔지 모르겠네요 그냥 그 키 단어의 예문을 만들라는 말일까요?
4.프로그램해석