Форум программистов, компьютерный форум, киберфорум
C++/CLI Windows Forms
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
0 / 0 / 0
Регистрация: 22.03.2019
Сообщений: 9

Не могу умножить экспонента, на калькуляторе показывает неправильно

23.01.2021, 18:08. Показов 1378. Ответов 0

Студворк — интернет-сервис помощи студентам
Здравствуйте. У меня калькулятор работает неправильно с экспонента числами. Можете мне помочь разобраться с кодом.
Пример: 1,2335156е+57 ^ 2 = 1 ... 6,2153156е+57 ^ 2 = 36 ...

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
#pragma once
#include <string>
#include <climits>
#include <exception>
#include <math.h>
using namespace std;
 
namespace Calc {
    using namespace System;
    using namespace System::ComponentModel;
    using namespace System::Collections;
    using namespace System::Windows::Forms;
    using namespace System::Data;
    using namespace System::Drawing;
 
    /// <summary>
    /// Сводка для MyForm
    /// </summary>
    public ref class MyForm : public System::Windows::Forms::Form
    {
    public:
        MyForm(void)
        {
            InitializeComponent();
            //
            //TODO: добавьте код конструктора
            //
        }
    protected:
        /// <summary>
        /// Освободить все используемые ресурсы.
        /// </summary>
        ~MyForm()
        {
            if (components)
            {
                delete components;
            }
        }
 
    private: System::Windows::Forms::TextBox^ HText;
    private: System::Windows::Forms::TextBox^ OpText;
    private: System::Windows::Forms::TextBox^ CurText;
    private: System::Windows::Forms::Button^ Tree_b;
    private: System::Windows::Forms::Button^ Nine_but;
    private: System::Windows::Forms::Button^ Plus_b;
    private: System::Windows::Forms::Button^ Six_b;
    private: System::Windows::Forms::Button^ Five_b;
    private: System::Windows::Forms::Button^ Eight_b;
    private: System::Windows::Forms::Button^ Two_b;
    private: System::Windows::Forms::Button^ MemMinus_b;
    private: System::Windows::Forms::Button^ Del_b;
    private: System::Windows::Forms::Button^ MemPlus_b;
    private: System::Windows::Forms::Button^ Four_b;
    private: System::Windows::Forms::Button^ Seven_b;
    private: System::Windows::Forms::Button^ One_b;
    private: System::Windows::Forms::Button^ Memory_b;
    private: System::Windows::Forms::Button^ Substract_b;
    private: System::Windows::Forms::Button^ Multiply_b;
    private: System::Windows::Forms::Button^ Divide_b;
    private: System::Windows::Forms::Button^ button1;
    private: System::Windows::Forms::Button^ button2;
    private: System::Windows::Forms::Button^ button3;
    private: System::Windows::Forms::Button^ button4;
    private: System::Windows::Forms::Button^ button5;
    private: System::Windows::Forms::Button^ button6;
    private: System::Windows::Forms::Button^ button7;
    private: System::Windows::Forms::Button^ button8;
    private: System::Windows::Forms::RadioButton^ radioButton1;
    private: System::Windows::Forms::RadioButton^ radioButton2;
    private: System::Windows::Forms::Button^ button9;
    private: System::Windows::Forms::MenuStrip^ menuStrip1;
    private: System::Windows::Forms::ToolStripMenuItem^ менюToolStripMenuItem;
    private: System::Windows::Forms::ToolStripMenuItem^ оПрограммеToolStripMenuItem;
    private: System::Windows::Forms::ToolStripMenuItem^ toolStripMenuItem1;
    private: System::Windows::Forms::ToolStripMenuItem^ выходToolStripMenuItem;
 
    private: System::ComponentModel::IContainer^ components;
 
    protected:
    private:
        /// <summary>
        /// Обязательная переменная конструктора.
        /// </summary>
 
#pragma region Windows Form Designer generated code
        /// <summary>
        /// Требуемый метод для поддержки конструктора — не изменяйте 
        /// содержимое этого метода с помощью редактора кода.
        /// </summary>
        void InitializeComponent(void)
        {
            
 
#pragma endregion
        void MarshalString(String^ s, string& os)
        {
            using namespace Runtime::InteropServices;
            const char* chars = (const char*)(Marshal::StringToHGlobalAnsi(s)).ToPointer();
            os = chars;
            Marshal::FreeHGlobal(IntPtr((void*)chars));
        }
 
    private: bool b = false;
    public: void check_b(RadioButton^ r)
    {
        if (r->Checked == true)
            b = true;
        else b = false;
    }
 
    private: System::Void b_checked(System::Object^ sender, System::EventArgs^ e)
    {
        if (!CurText->Text->Contains(".") && !HText->Text->Contains(".") && !CurText->Text->Contains("-") && !HText->Text->Contains("-"))
            if (radioButton1->Checked == true) {
                Two_b->Enabled = false;
                Tree_b->Enabled = false;
                Four_b->Enabled = false;
                Five_b->Enabled = false;
                Six_b->Enabled = false;
                Seven_b->Enabled = false;
                Eight_b->Enabled = false;
                Nine_but->Enabled = false;
                button2->Enabled = false;
                button3->Enabled = false;
                button5->Enabled = false;
                button6->Enabled = false;
                button7->Enabled = true;
                button8->Enabled = true;
            
            }
            else {
                Two_b->Enabled = true;
                Tree_b->Enabled = true;
                Four_b->Enabled = true;
                Five_b->Enabled = true;
                Six_b->Enabled = true;
                Seven_b->Enabled = true;
                Eight_b->Enabled = true;
                Nine_but->Enabled = true;
                button2->Enabled = true;
                button3->Enabled = true;
                button5->Enabled = true;
                button6->Enabled = true;
                button7->Enabled = false;
                button8->Enabled = false;
                string str;
                Int32 F_N;
                if (CurText->Text != "") {
                    MarshalString(CurText->Text, str);
                    F_N = stoi(str, 0, 2);
                    CurText->Text = Convert::ToString(F_N);
                }
                if (HText->Text != "") {
                    MarshalString(HText->Text, str);
                    F_N = stoi(str, 0, 2);
                    HText->Text = Convert::ToString(F_N);
                }
            }
        else {
            MessageBox::Show("Вычисления в двоичной системе счисления возможны только для целых неотрицательных чисел!");
        }
    }
 
           void Click(TextBox^ H, TextBox^ C, TextBox^ O, char op)
           {
               if (O->Text == "") {
                   if (C->Text == "") {
                       try {
                           string str2;
                           str2.push_back(op);
                           String^ s;
                           if (op == 'N') {
                               s = "NOT";
                           }
                           else {
                               if (op == '&') s = "AND";
                               else s = gcnew String(str2.c_str());
                           }
 
                           O->Text = s;
                           C->Text = "";
                       }
                       catch (...) {
                           MessageBox::Show("неверный ввод");
                       }
                   }
                   else {
                       string str;
                       string str2;
                       str2.push_back(op);
                       String^ s;
                       if (op == 'N') {
                           s = "NOT";
                       }
                       else {
                           if (op == '&') s = "AND";
                           else s = gcnew String(str2.c_str());
                       }
                       MarshalString(C->Text, str);
                       H->Text = C->Text;
                       O->Text = s;
                       C->Text = "";
                   }
               }
               else
               {
                   try {
                       double F_N;
                       double S_N;
                       string str2;
                       MarshalString(O->Text, str2);
                       char o = str2[0];
                       str2 = "";
                       str2.push_back(op);
                       String^ s;
                       if (op == 'N') {
                           s = "NOT";
                       }
                       else {
                           if (op == '&') s = "AND";
                           else s = gcnew String(str2.c_str());
                       }
                       string str;
                       MarshalString(H->Text, str);
                       F_N = stod(str);
                       MarshalString(C->Text, str);
                       S_N = stod(str);
                       H->Text = result(S_N, F_N, o).ToString();
                       O->Text = s;
                       C->Text = "";
                   }
                   catch (...) {
                       MessageBox::Show("неверный ввод");
                   }
               }
           }
 
           double result(double F_N, double S_N, char o)
           {
               double r;
               switch (o)
               {
               case '+':
                   if (F_N + S_N < std::numeric_limits<double>::max() || F_N + S_N > std::numeric_limits<double>::min()) {
                       try {
                           r = F_N + S_N;
                           return r;
                       }
                       catch (double) {
                           MessageBox::Show("Ошибка сложения");
                       }
                   }
                   else { MessageBox::Show("Ошибка переволнения"); }
                   break;
 
               case '-':
                   if (F_N - S_N < std::numeric_limits<double>::max() || F_N - S_N > std::numeric_limits<double>::min()) {
                       try {
                           r = S_N - F_N;
                           return r;
                       }
                       catch (...) {
                           MessageBox::Show("Ошибка вычитания");
                       }
                   }
                   else { MessageBox::Show("Переполнения"); }
                   break;
               case '*':
                   if ((F_N == 0) || (S_N == 0)) { return 0; }
                   else {
                       if (F_N * S_N < std::numeric_limits<double>::max() || F_N * S_N > std::numeric_limits<double>::min()) {
                           try {
                               r = F_N * S_N;
                               return r;
                           }
                           catch (double) {
                               MessageBox::Show("Ошибка умножения");
                           }
                       }
                       else { MessageBox::Show("Ошибка переволнения"); }
                   }
                   break;
               case '/':
                   if (F_N != 0) {
                       try {
                           r = S_N / F_N;
                           return r;
                       }
                       catch (...) {
                           MessageBox::Show("Ошибка деления");
                       }
                   }
                   break;
               case '^':
                   if (!(powl(S_N, F_N) > std::numeric_limits<double>::max())) {
                       try {
                           r = powl(S_N, F_N);
                           return r;
                       }
                       catch (double) {
                           MessageBox::Show("Ошибка возведения в степень");
                       }
                       throw "OVERFLOW";
                   }
                   else { MessageBox::Show("Ошибка переполнения"); }
                   break;
               case 's':
                   if (F_N < 0) { MessageBox::Show("Калькулятор не работает с комплексными числами!"); }
                   try {
                       r = sqrt(F_N);
                       return r;
                   }
                   catch (...) {
                       MessageBox::Show("Ошибка вычисления квадратного корня");
                   }
                   break;
               case 'N':
                   try {
                       int F = F_N;
                       int S = S_N;
                       F_N = S_N;
                       r = ~F;
                       return r;
                   }
                   catch (...) {
                       MessageBox::Show("Ошибка побитовой операции");
                   }
                   break;
               case '&':
                   try {
                       int F = F_N;
                       int S = S_N;
                       r = F & S;
                       return r;
                   }
                   catch (...) {
                       MessageBox::Show("Ошибка побитовой операции");
                   }
                   break;
               default: break;
               }
           }
 
    private: System::Void Plus_b_Click(System::Object^ sender, System::EventArgs^ e) {
        Click(HText, CurText, OpText, '+');
    }
    private: System::Void MyForm_Load(System::Object^ sender, System::EventArgs^ e) {
        radioButton2->Checked = true;
    }
    private: System::Void One_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("1");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("1");
        }
    }
    private: System::Void Two_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("2");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("2");
        }
    }
    private: System::Void Tree_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("3");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("3");
        }
    }
    private: System::Void Four_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("4");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("4");
        }
    }
    private: System::Void Five_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("5");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("5");
        }
    }
    private: System::Void Six_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("6");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("6");
        }
    }
    private: System::Void Seven_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("7");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("7");
        }
    }
    private: System::Void Eight_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("8");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("8");
        }
    }
    private: System::Void Nine_but_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("9");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("9");
        }
    }
 
    private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
        if (radioButton1->Checked == true) {
            if (CurText->Text->Length < 16)
                CurText->AppendText("0");
        }
        else {
            if (CurText->Text->Length < 15)
                CurText->AppendText("0");
        }
    }
 
    private: System::Void Del_b_Click(System::Object^ sender, System::EventArgs^ e) {
        if (CurText->Text->Length > 0) {
            int n = CurText->Text->Length;
            CurText->Text = CurText->Text->Remove(n - 1);
        }
    }
    private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) {
        if ((!CurText->Text->Contains(".")) && (CurText->Text->Length < 17))
            CurText->AppendText(".");
    }
    private: System::Void button3_Click(System::Object^ sender, System::EventArgs^ e) {
        if (CurText->Text->StartsWith("-")) {
            CurText->Text = CurText->Text->Substring(1);
        }
        else {
            if (CurText->Text == "") {
                CurText->AppendText("-");
            }
            else
            {
                CurText->Text = CurText->Text->Insert(0, "-");
            }
        }
    }
    private: System::Void button4_Click(System::Object^ sender, System::EventArgs^ e) {
        if (OpText->Text != "") {
            try {
                string str;
                double F_N;
                double S_N;
                MarshalString(OpText->Text, str);
                char o = str[0];
                MarshalString(CurText->Text, str);
                if (radioButton1->Checked == true) { F_N = stoi(str, 0, 2); }
                else { F_N = stod(str); }
                MarshalString(HText->Text, str);
                if (radioButton1->Checked == true) { S_N = stoi(str, 0, 2); }
                else { S_N = stod(str); }
                if (radioButton1->Checked == true) {
                    short R = result(F_N, S_N, o);
                }
                else { HText->Text = result(F_N, S_N, o).ToString(); }
                OpText->Text = "";
                CurText->Text = "";
            }
            catch (...) {
                MessageBox::Show("неверный ввод");
            }
        }
        else {
            if (CurText->Text != "-")
                HText->Text = CurText->Text;
        }
 
    }
    private: System::Void Substract_b_Click(System::Object^ sender, System::EventArgs^ e) {
        Click(HText, CurText, OpText, '-');
    }
 
    private: System::Void Multiply_b_Click(System::Object^ sender, System::EventArgs^ e) {
        Click(HText, CurText, OpText, '*');
    }
    private: System::Void Divide_b_Click(System::Object^ sender, System::EventArgs^ e) {
        Click(HText, CurText, OpText, '/');
    }
 
    private: System::Void button5_Click(System::Object^ sender, System::EventArgs^ e) {
        Click(HText, CurText, OpText, '^');
    }
 
    private: System::Void button6_Click(System::Object^ sender, System::EventArgs^ e) {
        if (!CurText->Text->Contains("-")) {
            if (CurText->Text != "") {
                try {
                    string s;
                    MarshalString(CurText->Text, s);
                    double F_N = stold(s);
                    double S_N = sqrtl(F_N);
                    HText->Text = S_N.ToString();
                    CurText->Text = "";
                    OpText->Text = "";
                }
                catch (...) {
                    MessageBox::Show("Ошибка вычисления квадратного корня");
                }
            }
            else {
                if ((CurText->Text == "") && (HText->Text != "")) {
                    try {
                        string s;
                        MarshalString(HText->Text, s);
                        double F_N = stold(s);
                        double S_N = sqrtl(F_N);
                        HText->Text = S_N.ToString();
                        CurText->Text = "";
                        OpText->Text = "";
                    }
                    catch (...) {
                        MessageBox::Show("Ошибка вычисления квадратного корня");
                    }
                }
 
                if ((CurText->Text == "") && (HText->Text == "")) {
                    HText->Text = "0";
                    OpText->Text = "";
                }
            }
        }
        else { MessageBox::Show("Калькулятор не работает с комплексными числами!"); }
    }
    private: System::Void button8_Click(System::Object^ sender, System::EventArgs^ e) {
        if (!CurText->Text->Contains(".") && !HText->Text->Contains(".") && !CurText->Text->Contains("-") && !HText->Text->Contains("-"))
            Click(HText, CurText, OpText, 'N');
        else MessageBox::Show("Побитовые операции доступны только для целых неотрицательных чисел!");
    }
 
    private: System::Void button7_Click(System::Object^ sender, System::EventArgs^ e) {
        if (!CurText->Text->Contains(".") && !HText->Text->Contains(".") && !CurText->Text->Contains("-") && !HText->Text->Contains("-"))
            Click(HText, CurText, OpText, '&');
        else MessageBox::Show("Побитовые операции доступны только для целых неотрицательных чисел!");
    }
    private: long double Mr = 0;
    public: void SetM(double s) {
        Mr = s;
    }
          long double GetM() {
              return Mr;
          }
    private: System::Void Memory_b_Click(System::Object^ sender, System::EventArgs^ e) {
        HText->Text = GetM().ToString();
        OpText->Text = "";
        CurText->Text = "";
    }
    private: System::Void MemMinus_b_Click(System::Object^ sender, System::EventArgs^ e) {
        try {
            string s;
            MarshalString(HText->Text, s);
            double N = stold(s);
            SetM(GetM() - N);
        }
        catch (...) {
            MessageBox::Show("Из памяти вычитается история вычислений!");
        }
    }
    private: System::Void MemPlus_b_Click(System::Object^ sender, System::EventArgs^ e) {
        try {
            string s;
            MarshalString(HText->Text, s);
            double N = stold(s);
            SetM(GetM() + N);
        }
        catch (...) {
            MessageBox::Show("Добавление в память осуществляется из результата вычислений!");
        }
    }
    private: System::Void button9_Click(System::Object^ sender, System::EventArgs^ e) {
        HText->Text = "";
        CurText->Text = "";
        OpText->Text = "";
    }
    private: System::Void radioButton1_Click(System::Object^ sender, System::EventArgs^ e) {
        radioButton1->Checked = true;
        radioButton2->Checked = false;
 
    }
    private: System::Void radioButton2_Click(System::Object^ sender, System::EventArgs^ e) {
        radioButton2->Checked = true;
        radioButton1->Checked = false;
    }
    private: System::Void radioButton2_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
    }
 
private: System::Void CurText_TextChanged(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void HText_TextChanged(System::Object^ sender, System::EventArgs^ e) {
}
};
}
0
IT_Exp
Эксперт
34794 / 4073 / 2104
Регистрация: 17.06.2006
Сообщений: 32,602
Блог
23.01.2021, 18:08
Ответы с готовыми решениями:

посчитать значение е (экспонента) с вводимой точностью епсилон, и вводимым значением экспонента за формулою
посчитать значение е (экспонента) с вводимой точностью эпсилон, и вводимым значением экспонента за формулою ...

Неправильно показывает температуру?!
Сейчас заметил что процессор по мониторингу сильно греется (не факт), запустил стресс тест - темп 65! Ради интереса дотронулся до...

Неправильно показывает шрифт
У меня стоит ворд 13. Я печатал там работу и шрифт был нормальным (был Таймс Нью Роман, 14), после сохранения и последующем перезапуске...

0
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
BasicMan
Эксперт
29316 / 5623 / 2384
Регистрация: 17.02.2009
Сообщений: 30,364
Блог
23.01.2021, 18:08
Помогаю со студенческими работами здесь

Неправильно показывает информацию
Неправильно показывает информацию о накопителе. #include &lt;Windows.h&gt; #include &lt;conio.h&gt; #include &lt;stdio.h&gt; void main () ...

Everest неправильно показывает вольтаж БП?
Доброй ночи. Такая проблема. Зависает копм при нагрузках в играх. Поставил Everest и меня смутили показания вольтажа в датчике. Это...

Мультиметр неправильно показывает сопротивление
После неудачного измерения силы тока и замены предохранителя мультиметр стал неверно определять сопротивления. Очень заметно на интервале...

Диспетчер неправильно показывает потребление приложений
Всем привет. Недавно заметил, что в диспетчере неправильно указано потребление оперативной памяти и процессора. Особо это заметно в играх,...

Сайт неправильно показывает на iexplorer и mozile firefox
Создал сайт на локальном сервере с помощью программы html. На opere показывает так, как задумывал создать. А на дугих браузерах открывается...


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

Или воспользуйтесь поиском по форуму:
1
Ответ Создать тему
Новые блоги и статьи
Воспроизведение звукового файла с помощью SDL3_mixer при касании экрана Android
8Observer8 26.01.2026
Содержание блога SDL3_mixer - это библиотека я для воспроизведения аудио. В отличие от инструкции по добавлению текста код по проигрыванию звука уже содержится в шаблоне примера. Нужно только. . .
Установка Android SDK, NDK, JDK, CMake и т.д.
8Observer8 25.01.2026
Содержание блога Перейдите по ссылке: https:/ / developer. android. com/ studio и в самом низу страницы кликните по архиву "commandlinetools-win-xxxxxx_latest. zip" Извлеките архив и вы увидите. . .
Вывод текста со шрифтом TTF на Android с помощью библиотеки SDL3_ttf
8Observer8 25.01.2026
Содержание блога Если у вас не установлены Android SDK, NDK, JDK, и т. д. то сделайте это по следующей инструкции: Установка Android SDK, NDK, JDK, CMake и т. д. Сборка примера Скачайте. . .
Использование SDL3-callbacks вместо функции main() на Android, Desktop и WebAssembly
8Observer8 24.01.2026
Содержание блога Если вы откроете примеры для начинающих на официальном репозитории SDL3 в папке: examples, то вы увидите, что все примеры используют следующие четыре обязательные функции, а. . .
моя боль
iceja 24.01.2026
Выложила интерполяцию кубическими сплайнами www. iceja. net REST сервисы временно не работают, только через Web. Написала за 56 рабочих часов этот сайт с нуля. При помощи perplexity. ai PRO , при. . .
Модель сукцессии микоризы
anaschu 24.01.2026
Решили писать научную статью с неким РОманом
http://iceja.net/ математические сервисы
iceja 20.01.2026
Обновила свой сайт http:/ / iceja. net/ , приделала Fast Fourier Transform экстраполяцию сигналов. Однако предсказывает далеко не каждый сигнал (см ограничения http:/ / iceja. net/ fourier/ docs ). Также. . .
http://iceja.net/ сервер решения полиномов
iceja 18.01.2026
Выкатила http:/ / iceja. net/ сервер решения полиномов (находит действительные корни полиномов методом Штурма). На сайте документация по API, но скажу прямо VPS слабенький и 200 000 полиномов. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru