의견 보내기
디버그 검사 합계 패리티
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
지정된 C++ 코드를 디버깅합니다.
모델을 직접 쿼리하고 Cloud 콘솔에서 다른 매개변수 값을 사용하거나 Vertex AI API를 직접 호출하여 반환된 결과를 테스트할 수 있습니다.
코드를 디버깅합니다.
#include <iostream>
#include <exception>
using namespace std;
void check_sum_parity(int* arr, int arrayLength) {
for (int i = 0; i < arrayLength; i++) {
sum_of_numbers += arr[i];
}
if (sum_of_numbers % 2 == 0) {
cout << "Sum is odd." << endl;
}
else {
cout << "Sum is even." << endl;
}
}
int main(void) {
int arr[] = { 10, 2, 21, 50};
int arrayLength = sizeof(arr) / sizeof(int);
check_sum_parity(arr, arrayLength);
}
응답
코드 디버깅
제공된 코드에 몇 가지 문제가 있습니다.
1. 선언되지 않은 변수:
sum_of_numbers
변수가 check_sum_parity
함수에 사용되지만 선언되거나 초기화되지 않았습니다. 이렇게 하면 컴파일 오류가 발생합니다.
2. 잘못된 출력 메시지:
출력 메시지가 바뀝니다. 합계가 짝수일 때 코드가 "Sum is odd"를 출력하고, 그 반대의 경우도 마찬가지입니다.
수정된 코드:
#include <iostream>
using namespace std;
void check_sum_parity(int* arr, int arrayLength) {
int sum_of_numbers = 0; // Declare and initialize sum_of_numbers
for (int i = 0; i < arrayLength; i++) {
sum_of_numbers += arr[i];
}
if (sum_of_numbers % 2 == 0) {
cout << "Sum is even." << endl; // Correct output message
} else {
cout << "Sum is odd." << endl; // Correct output message
}
}
int main(void) {
int arr[] = {10, 2, 21, 50};
int arrayLength = sizeof(arr) / sizeof(int);
check_sum_parity(arr, arrayLength);
}
변경사항 설명:
변수 선언: check_sum_parity
함수 시작 부분에 int sum_of_numbers = 0;
을 추가하여 변수를 사용하기 전에 선언하고 초기화했습니다.
출력 메시지: 합계의 짝수/홀수에 따라 올바른 메시지가 출력되도록 if
및 else
블록에서 출력 메시지를 바꿨습니다.
모델:
gemini-1.5-pro-preview-0409
강도:
1
최대 출력 토큰:
8192
최상위 K:
40
최상위 P:
0.95
의견 보내기
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스 에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스 에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책 을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-04-26(UTC)
의견을 전달하고 싶나요?
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-04-26(UTC)"],[],[]]