Форум программистов, компьютерный форум, киберфорум
С++ для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.98/48: Рейтинг темы: голосов - 48, средняя оценка - 4.98
2 / 2 / 1
Регистрация: 01.11.2014
Сообщений: 39
1

Строки char: умножение двух чисел

22.01.2015, 22:35. Показов 8873. Ответов 4
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
нужно было создать функцию, умножающую два числа (до 30 цифр включительно). эти числа - два char массива.
есть один момент, с которым мне сложновато разобраться - при переходе на следующее число, на которое будут умножаться первое число по цифрам, идет путаница с цифрой "в уме" и той, что записывается как остаток. (15 строка)
если как тестовые данные взять 567 умножить на 89, то результат будет 50863 (3 цифра в процессе переписалась почему то с положенной 1 на 5, вследствии чего и в результате 3 цифра не положенная 4, а 8)... а если в 15 строке "j + bcount - parbide - 1" изменить на "j + bcount - parbide - 2", тогда результат будет правильным. но уже перестанет быть правильным для других вводимых данных.
подскажите идеи, помогите, с общем.

фрагмент кода:
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    int acount = strlen(a), bcount = strlen(b);
    int gar = acount + bcount; 
 
    char c[61];
    for (int i = 0; i < gar; i++) c[i] = '0';
    c[gar] = '\0';
    int sk = 0; 
    int mind = 0; // цифра "в уме"
    int parbide = 0; // сдвиг
    for (int i = bcount - 1; i >= 0; i--){
        for (int j = acount - 1; j >= 0; j--){
            sk = (b[i] - '0') * (a[j] - '0') + (c[j + bcount - parbide] - '0') + mind;
            mind = sk/10;
            c[j + bcount - parbide] = sk%10 + '0';
            if (i == 0) c[j + bcount - parbide - 1] = mind + '0'; // то самое место, в котором что то идет не так
            sk = 0;
        }
        mind = 0;
        parbide++;
    }

PS. нет, длинная арифметика мне не подходит.
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
22.01.2015, 22:35
Ответы с готовыми решениями:

Сложение / Вычитание / Умножение чисел записанных в виде массива char символов
доброго времени суток. такой вопрос, как мне сделать выше перечилненные математичиские вычесления...

Умножение двух длинных чисел
Приветствую, помогите исправить процедуру умножения двух длинных чисел: void CALL_TYPE ...

Умножение двух чисел в столбик
Добрый день, товарищи! Вроде бы задание простое, но я в тупике, просто не пойму как начать. ...

Умножение двух больших чисел
дано два 40 значных числа,нужно перемножить их http://e-maxx.ru/algo/big_integer от сюда и других...

4
Диссидент
Эксперт C
27709 / 17325 / 3811
Регистрация: 24.12.2010
Сообщений: 38,979
22.01.2015, 23:10 2
Цитата Сообщение от annussaa Посмотреть сообщение
нет, длинная арифметика мне не подходит.
Если я правильно понял, вы хотите ее реализовать сами? Похвально! Я не знаю ни одного уважающего себя программиста, который не попробовал бы себя на этом поприще. Это чрезвычайно полезное упражнение, и Бог вам в помощь!
ИМХО, вы на правильном пути. Но кода вашего я смотреть не стал - время позднее. Могу дать несколько ни к чему не обязывающих советов.
1. Возьмите лист бумаги, напишите 2 числа и попробуйте их перемножить столбиком, тщательно следя за своими действиями и алгоритмизируя их. (И как только первоклашки это проделывают, ни о чем не задумываясь?!)
2. разряды я бы расположил наоборот. От младших к старшим. Так логика будет прозрачней. Ведь на бумажке вы именно так и делаете - от младших к старшим.
3. Используйте не символьные представления, '0', '1' ... а числовые 0, 1,.. Так вам не придется возиться с - '0', '0'+... сможете сосредоточиться на самом алгоритме. По ходу может появиться мысль использовать не 10-ичную с/с, а 256-ричную, что значительно эффективнее
4. В проблемных местах не стесняйтесь выводить промежуточную информацию (printf, cout). Если ее слишком много и она не помещается на экран, запустите вашу программу из командной строки "proga >file.txt" В файле окажется вся ваша выдача и вы ее спокойно сможете проанализировать
Удачи!
0
2 / 2 / 1
Регистрация: 01.11.2014
Сообщений: 39
22.01.2015, 23:15  [ТС] 3
Байт, дело в том, что я не могу отклоняться от условий данного мне задания..) программа должна быть написана именно с использованием char.
что насчет ваших советов - да, именно так я и делала. с бумаги именно все перенеслось в код. и cout'ы тоже были, убрала их лишь здесь
спасибо за советы!
0
DU
1500 / 1146 / 165
Регистрация: 05.12.2011
Сообщений: 2,279
22.01.2015, 23:31 4
я вот когда-то писал то ли лабу, толи тестовое. специально откопал в архивах. врятли TC разберется в коде, это я так, похвастаться

C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
#include <algorithm>
#include <cassert>
#include <functional>
#include <iostream>
#include <vector>
#include <string>
#include <stdexcept>
 
using namespace std;
 
class BigInt
{
  std::string m_value;
 
public:
  class Exception : public std::exception
  {
  public:
    enum ErrorCode { bad_format, division_by_zero, unknown_error };
 
  private:
    ErrorCode m_code;
 
  public:
    Exception(ErrorCode code) : m_code(code)
    {
    }
 
    virtual const char* what() const
    {
      switch (m_code)
      {
        case bad_format       : return "BigInt exception: bad format";
        case division_by_zero   : return "BigInt exception: division by zero";
      }
      return "BigInt exception: unknown error";
    }
  };
 
  BigInt(int value = 0);
  BigInt(const std::string& value);
  BigInt(const char* pValue);
 
  std::string   ToString() const;
 
  BigInt& operator += (const BigInt& lhs);
  BigInt& operator -= (const BigInt& lhs);
  BigInt& operator *= (const BigInt& lhs);
  BigInt& operator /= (const BigInt& lhs);
 
  BigInt& operator ++ ();
  const BigInt operator ++ (int);
 
  BigInt& operator -- ();
  const BigInt operator -- (int);
 
  const BigInt operator - () const;
 
  friend bool operator == (const BigInt& lhs, const BigInt& rhs);
  friend bool operator != (const BigInt& lhs, const BigInt& rhs);
  friend bool operator < (const BigInt& lhs, const BigInt& rhs);
  friend bool operator > (const BigInt& lhs, const BigInt& rhs);
  friend bool operator <= (const BigInt& lhs, const BigInt& rhs);
  friend bool operator >= (const BigInt& lhs, const BigInt& rhs);
 
  friend BigInt abs(const BigInt& value);
 
  friend std::ostream& operator << (std::ostream& o, const BigInt& bi);
  friend std::istream& operator >> (std::istream& i, BigInt& bi);
};
 
bool operator == (const BigInt& lhs, const BigInt& rhs);
bool operator != (const BigInt& lhs, const BigInt& rhs);
bool operator < (const BigInt& lhs, const BigInt& rhs);
bool operator > (const BigInt& lhs, const BigInt& rhs);
bool operator <= (const BigInt& lhs, const BigInt& rhs);
bool operator >= (const BigInt& lhs, const BigInt& rhs);
 
BigInt operator + (const BigInt& lhs, const BigInt& rhs);
BigInt operator - (const BigInt& lhs, const BigInt& rhs);
BigInt operator * (const BigInt& lhs, const BigInt& rhs);
BigInt operator / (const BigInt& lhs, const BigInt& rhs);
 
BigInt abs(const BigInt& value);
 
std::ostream& operator << (std::ostream& o, const BigInt& bi);
std::istream& operator >> (std::istream& i, BigInt& bi);
 
 
void ReportError(BigInt::Exception::ErrorCode code)
{
  throw BigInt::Exception(code);
}
 
BigInt::BigInt(int value)
  : m_value(std::to_string(value))
{
}
 
BigInt::BigInt(const string& value)
  : m_value(value)
{
  if (m_value.empty())
  {
    ReportError(Exception::bad_format);
  }
 
  if (m_value[0] == '+')
  {
    m_value.erase(m_value.begin());
  }
 
  if (m_value.empty())
  {
    ReportError(Exception::bad_format);
  }
 
  string::iterator it = m_value.begin();
  if (*it == '-')
  {
    if (m_value.size() == 1)
    {
      ReportError(Exception::bad_format);
    }
    else
    {
      ++it;
    }
  }
 
    m_value.erase(it, find_if(it, m_value.end() - 1, bind2nd(not_equal_to<int>(), int('0'))));
 
  if (m_value[0] == '-' && m_value[1] == '0')
  {
    m_value.erase(m_value.begin());
  }
 
  string::iterator from = m_value.begin();
  if (*from == '-')
  {
    ++from;
  }
 
  if (m_value.end() != find_if(from, m_value.end(), not1(ptr_fun(isdigit))))
  {
    ReportError(Exception::bad_format);
  }
}
 
BigInt::BigInt(const char* pValue)
{
  BigInt tmp((string(pValue))); // warning C4930!
  m_value.swap(tmp.m_value);
}
 
string BigInt::ToString() const
{
  return m_value;
}
 
BigInt& BigInt::operator += (const BigInt& rhs)
{
  const bool f1 = *this < 0;
  const bool f2 = rhs < 0;
 
  if (true == f1 && true == f2)
  {
    return *this = -((-*this) + (-rhs)); 
  }
 
  if (true == f1)
  {
    return *this = rhs - (-(*this));
  }
 
  if (true == f2)
  {
    return *this -= (-rhs);
  }
 
  const size_t maxLength = max(m_value.size(), rhs.m_value.size());
 
  vector<int> tmpThis(maxLength, 0);
  vector<int> tmpOther(maxLength, 0);
 
  {
    vector<int>::reverse_iterator itVec = tmpThis.rbegin();
    string::const_reverse_iterator end = m_value.rend();
    for (string::const_reverse_iterator it = m_value.rbegin(); it != end; ++it, ++itVec)
    {
      *itVec = static_cast<int>(*it - '0');
    }
  }
 
  {
    vector<int>::reverse_iterator itVec = tmpOther.rbegin();
    string::const_reverse_iterator end = rhs.m_value.rend();
    for (string::const_reverse_iterator it = rhs.m_value.rbegin(); it != end; ++it, ++itVec)
    {
      *itVec = static_cast<int>(*it - '0');
    }
  }
 
  int inMind = 0;
  vector<int>::reverse_iterator itThis = tmpThis.rbegin();
  vector<int>::reverse_iterator itOther = tmpOther.rbegin();
  for (vector<int>::reverse_iterator end = tmpThis.rend(); itThis != end; ++itThis, ++itOther)
  {
    const int tmp = *itThis + *itOther + inMind;
    *itThis = tmp % 10;
    inMind = tmp / 10;
  }
 
    transform(tmpThis.begin(), tmpThis.end(),
    tmpThis.begin(),
    bind2nd(plus<int>(), int('0')));
 
  string tmpValue;
  if (inMind > 0)
  {
    tmpValue += std::to_string(inMind);
  }
  tmpValue.insert(tmpValue.end(), tmpThis.begin(), tmpThis.end());
 
  m_value.swap(tmpValue);
 
  return *this;
}
 
BigInt& BigInt::operator -= (const BigInt& rhs)
{
  const bool f1 = *this < 0;
  const bool f2 = rhs < 0;
 
  if (true == f1 && true == f2)
  {
    return *this = (-rhs) - (-*this); 
  }
 
  if (true == f1)
  {
    return *this = -((-*this) + rhs);
  }
 
  if (true == f2)
  {
    return *this += (-rhs);
  }
 
  const size_t maxLength = max(m_value.size(), rhs.m_value.size());
  vector<int> first(maxLength, 0);
  vector<int> second(maxLength, 0);
 
  {
    vector<int>::reverse_iterator itVec = first.rbegin();
    string::const_reverse_iterator end = m_value.rend();
    for (string::const_reverse_iterator it = m_value.rbegin(); it != end; ++it, ++itVec)
    {
      *itVec = static_cast<int>(*it - '0');
    }
    }
 
  {
    vector<int>::reverse_iterator itVec = second.rbegin();
    string::const_reverse_iterator end = rhs.m_value.rend();
    for (string::const_reverse_iterator it = rhs.m_value.rbegin(); it != end; ++it, ++itVec)
    {
      *itVec = static_cast<int>(*it - '0');
    }
  }
 
  if (*this < rhs)
  {
    first.swap(second);
  }
 
  vector<int>::reverse_iterator itFirst = first.rbegin();
  vector<int>::reverse_iterator itSecond = second.rbegin();
  for (vector<int>::reverse_iterator end = first.rend(); itFirst != end; ++itFirst, ++itSecond)
  {
    int diff = *itFirst - *itSecond;
    while (diff < 0)
    {
      if (diff < 0)
      {
        diff += 10;
        --*(itFirst + 1);
      }
    }
    *itFirst = diff;
  }
 
    transform(first.begin(), first.end(),
    first.begin(),
    bind2nd(plus<int>(), int('0')));
 
  string tmpValue;
  if (*this < rhs)
  {
    tmpValue.push_back('-');
  }
 
  tmpValue.insert(tmpValue.end(),
    find_if(first.begin(), first.end() - 1, bind2nd(not_equal_to<int>(), int('0'))),
    first.end());
 
  m_value.swap(tmpValue);
 
  return *this;
}
 
BigInt& BigInt::operator *= (const BigInt& rhs)
{
  const bool f1 = *this < 0;
  const bool f2 = rhs < 0;
 
  if (true == f1 && true == f2)
  {
    return *this = (-*this) * (-rhs);
  }
 
  if (true == f1)
  {
    return *this = -((-*this) * rhs);
  }
 
  if (true == f2)
  {
    return *this = -(*this * (-rhs));
  }
 
  const size_t maxLength = max(m_value.size(), rhs.m_value.size());
  typedef vector<int> Cont;
  Cont tmpThis(maxLength, 0);
  Cont tmpOther(maxLength, 0);
 
  {
    Cont::reverse_iterator itVec = tmpThis.rbegin();
    string::const_reverse_iterator end = m_value.rend();
    for (string::const_reverse_iterator it = m_value.rbegin(); it != end; ++it, ++itVec)
    {
       *itVec = static_cast<int>(*it - '0');
    }
  }
 
  {
    Cont::reverse_iterator itVec = tmpOther.rbegin();
    string::const_reverse_iterator end = rhs.m_value.rend();
    for (string::const_reverse_iterator it = rhs.m_value.rbegin(); it != end; ++it, ++itVec)
    {
      *itVec = static_cast<int>(*it - '0');
    }
  }
 
  typedef vector<Cont> Conts;
  Conts conts;
  Cont::reverse_iterator itThis = tmpThis.rbegin();
  Cont::reverse_iterator itOther = tmpOther.rbegin();
  unsigned int n = 0;
  for (Cont::reverse_iterator end = tmpThis.rend(); itThis != end; ++itThis, ++itOther, ++n)
  {
    int inMind = 0;
    Cont tmpCont;
 
    for (unsigned i = 0; i < n; ++i)
    {
      tmpCont.push_back(0);
    }
 
    Cont::reverse_iterator itOther = tmpOther.rbegin();
    for (Cont::reverse_iterator endOther = tmpOther.rend(); itOther != endOther; ++itOther)
    {
      const int tmp = (*itThis) * (*itOther) + inMind;
      tmpCont.push_back(tmp % 10);
      inMind = tmp / 10;
    }
 
    if (inMind != 0)
    {
      bool exit = false;
      while (!exit)
      {
        tmpCont.push_back(inMind % 10);
        exit = ( (inMind /= 10) == 0 );
      }
      tmpCont.push_back(inMind);
    }
 
    conts.push_back(tmpCont);
  }
 
  BigInt res;
  for (Conts::iterator it = conts.begin(), end = conts.end(); it != end; ++it)
  {
        transform(it->begin(), it->end(),
      it->begin(),
      bind2nd(plus<int>(), int('0')));
 
    res += string(it->rbegin(), it->rend());
  }
 
  m_value.swap(res.m_value);
 
  return *this;
}
 
BigInt& BigInt::operator /= (const BigInt& rhs)
{
  const bool f1 = *this < 0;
  const bool f2 = rhs < 0;
 
  if (true == f1 && true == f2)
  {
    return *this = (-*this) / (-rhs);
  }
 
  if (true == f1)
  {
    return *this = -((-*this) / rhs);
  }
 
  if (true == f2)
  {
    return *this = -(*this / (-rhs));
  }
 
 
  if (*this < rhs)
  {
    return *this = 0;
  }
 
  if (rhs == 0)
  {
    ReportError(Exception::division_by_zero);
  }
 
  typedef vector<int> Cont;
  Cont cont;
 
  BigInt tmpBI(*this);
  const string& strLhs = tmpBI.m_value;
  const string& strRhs = rhs.m_value;
 
  for (;;)
    {
    if (strLhs.size() < strRhs.size())
    {
      break;
    }
 
    string::const_iterator begin = strLhs.begin();
    string::const_iterator end = begin + strRhs.size();
 
    bool do_break = false;
    while (BigInt(string(begin, end)) < rhs)
    {
      if (static_cast<size_t>(distance(begin, end++)) >= strLhs.size())
      {
        do_break = true;
        break;
      }
    }
 
    if (true == do_break)
    {
      break;
    }
 
    BigInt bi(string(begin, end));
    int c = 0;
    while (bi >= rhs)
    {
      ++c;
      bi -= rhs;
    }
    cont.push_back(c);
 
    int cZero = 0;
    for (bool first = true; bi <= rhs && end != strLhs.end(); first = false, ++end)
    {
      if (bi == 0)
      {
        bi.m_value[0] = *end;
      }
      else
      {
        bi.m_value.push_back(*end);
      }
 
      if (bi < rhs)
      {
        ++cZero;
      }
    }
 
    cont.insert(cont.end(), cZero, 0);
 
    if (bi < rhs)
    {
      break;
    }
 
    bi.m_value.insert(bi.m_value.end(), end, strLhs.end());
    tmpBI.m_value.swap(bi.m_value);
  }
 
    transform(cont.begin(), cont.end(),
    cont.begin(),
    bind2nd(plus<int>(), int('0')));
 
  string(cont.begin(), cont.end()).swap(m_value);
 
  return *this;
}
 
BigInt& BigInt::operator ++ ()
{
  return *this += 1;
}
 
const BigInt BigInt::operator ++ (int)
{
  const BigInt tmp(*this);
  ++*this;
  return tmp;
}
 
BigInt& BigInt::operator -- ()
{
  return *this -= 1;
}
 
const BigInt BigInt::operator -- (int)
{
  const BigInt tmp(*this);
  --*this;
  return tmp;
}
 
const BigInt BigInt::operator - () const
{
  if (m_value[0] == '-')
  {
    return BigInt(string(m_value.begin() + 1, m_value.end()));
  }
 
  return BigInt(string("-") + m_value);
}
 
bool operator == (const BigInt& lhs, const BigInt& rhs)
{
  return lhs.m_value == rhs.m_value;
}
 
bool operator != (const BigInt& lhs, const BigInt& rhs)
{
  return !(lhs == rhs);
}
 
bool operator < (const BigInt& lhs, const BigInt& rhs)
{
  if (lhs == rhs)
  {
    return false;
  }
 
  if (lhs.m_value[0] == '-' && rhs.m_value[0] == '-')
  {
    return !(abs(lhs) < abs(rhs));
  }
 
  if (lhs.m_value[0] == '-')
  {
    return true;
  }
 
  if (rhs.m_value[0] == '-')
  {
    return false;
  }
 
  if (lhs.m_value.size() < rhs.m_value.size())
  {
    return true;
  }
 
  if (lhs.m_value.size() > rhs.m_value.size())
  {
    return false;
  }
 
  return lhs.m_value < rhs.m_value;
}
 
bool operator > (const BigInt& lhs, const BigInt& rhs)
{
  return !(lhs < rhs) && !(lhs == rhs);
}
 
bool operator <= (const BigInt& lhs, const BigInt& rhs)
{
  return !(lhs > rhs);
}
 
bool operator >= (const BigInt& lhs, const BigInt& rhs)
{
  return !(lhs < rhs);
}
 
BigInt operator + (const BigInt& lhs, const BigInt& rhs)
{
  BigInt tmp(lhs);
  return tmp += rhs;
}
 
BigInt operator - (const BigInt& lhs, const BigInt& rhs)
{
  BigInt tmp(lhs);
  return tmp -= rhs;
}
 
BigInt operator * (const BigInt& lhs, const BigInt& rhs)
{
  BigInt tmp(lhs);
  return tmp *= rhs;
}
 
BigInt operator / (const BigInt& lhs, const BigInt& rhs)
{
  BigInt tmp(lhs);
  return tmp /= rhs;
}
 
BigInt abs(const BigInt& value)
{
  return value.m_value[0] == '-' ? (-value) : value;
}
 
std::ostream& operator << (std::ostream& o, const BigInt& bi)
{
  return o << bi.m_value;
}
 
std::istream& operator >> (std::istream& i, BigInt& bi)
{
  string str;
  i >> str;
  if (false == str.empty())
  {
    bi = BigInt(str);
  }
  return i;
}
 
//////////
int main()
{
 
  BigInt b1 = "9999999999999999999999";
  BigInt b2 = "666";
 
  std::cout << b1 << " * " << b2 << " = " << b1 * b2 << std::endl;
 
 
  return 0;
}
0
2 / 2 / 1
Регистрация: 01.11.2014
Сообщений: 39
24.01.2015, 21:34  [ТС] 5
update: все же довела ту самую строку до ума и теперь программа на ввод любых положительных целых чисел длиной до 30 знаков включительно выдаёт правильный результат.

C++
1
if (j == 0) c[i] = mind + '0';
может, кому пригодится.
1
24.01.2015, 21:34
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
24.01.2015, 21:34
Помогаю со студенческими работами здесь

Реализовать умножение двух длинных чисел
Не могу никак разобраться, знаю, что решать надо с помощью строк и все. Помоги пожалуйста ...

Длинная арифметика. Умножение двух длинных чисел.
Есть 2 числа, храняющиеся в int векторах, нужна функция, которая возвращает их произведение также в...

Умножение двух чисел в двоичной системе счисления
Всем доброго времени суток! Мучаю эту программу уже который день, но правильно она складывать...

Длинная арифметика: умножение двух длинных чисел
Всем привет! Снова к Вам за помощью. Алгоритм умножения двух длинных чисел: void...

Умножение двух двоичных чисел. не используя строки
Умножение двух двоичных чисел. не используя строки, только массивы.

Умножение двух чисел
Люди,помогите решить задачу на Assemblere. = {* если =2^10 {5* иначе Мои штрихи,но...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
5
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru