- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
bool MyProc::CompareModule(int *operand1, int *operand2, int n) {
for (int i = 1; i < n; i++) {
if (operand1[i] != operand2[i]) {
if (operand1[i] < operand2[i])
return false;
else
return true;
};
};
return true;
};
guest 13.12.2008 00:48 # 0
А в чем, собсно, проблема? Разве что
[code=c]
if (operand1[i] < operand2[i])
return false;
else
return true;
[code] упростить.. И ";" лишние поубирать.. Ну нуб, фигле?
guest8 25.09.2019 15:50 # −999