ValidolX
не совем понял.. убрать этот брейк?
Код:
Цитата:
не совем понял.. убрать этот брейк?
Код:
Цитата:
*user_msg = "Password Has Expired\r\n";
break;
} else {
*user_msg = "Password Has Expired\r\n";
break;
} else {
эта перегрузка оператора нужна, чтобы сделать что-то типа
cout<<A;
Мне нужно чтобы это рассчитывалось в C++
а почему +1 -то?
не превосходящих длины 12!
4 Unlike the bitwise | operator, the || operator guarantees left-to-right evaluation; there is
a sequence point after the evaluation of the first operand. If the first operand compares
unequal to 0, the second operand is not evaluated.
ну может быть, всегда был слаб в комбинаторике...
меня принципиально интересует почему в итоге с=0, а не -1
см. отличие между префиксной и постфиксной формой декремента
Constraints
1 The operand of the prefix increment or decrement operator shall have qualified or
unqualified real or pointer type and shall be a modifiable lvalue.
Semantics
2 The value of the operand of the prefix ++ operator is incremented. The result is the new
value of the operand after incrementation. The expression ++E is equivalent to (E+=1).
See the discussions of additive operators and compound assignment for information on
constraints, types, side effects, and conversions and the effects of operations on pointers.
3 The prefix -- operator is analogous to the prefix ++ operator, except that the value of the
operand is decremented.
То есть имеет место "число_цифр + 2 * число_латинских_букв + 1"-ричная система счисления, число всех возможных вариантов которой рассчитывается элементарно (степенью основания==максимально представимое число + 1)
Мне кажется, как-то так:
Код:
double d=0.0;
for (int i=1; i<=12; i++) d+=pow(62,i);
А где аа, бб и сс?
Страницы: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
Предыдущая тема: не знаю как назвать тему :-)