С Новым годом! Форум программистов, компьютерный форум, киберфорум
С++ для начинающих
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.88/8: Рейтинг темы: голосов - 8, средняя оценка - 4.88
0 / 0 / 0
Регистрация: 03.02.2014
Сообщений: 16

Перевод из C в C++ и обратно

24.03.2014, 20:50. Показов 1772. Ответов 9
Метки нет (Все метки)

Студворк — интернет-сервис помощи студентам
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
#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#include <malloc.h>
#include <clocale>
 
using namespace std;
using namespace System;
using namespace System::IO;
 
#define ENTER 13
#define ESC 27
#define UP 72
#define DOWN 80
 
 
char ball[6][43]={
"Какая зарплата является наибольшей ?",
"Кто из футболистов родился раньше всех ? ",
"У кого зарплата свыше 13 млн. долларов ? ",
"Алфавитный список всех футболистов ",
"Диаграмма. Процентное соотношение зарплат ",
"Выход "
};
char BlankLine[ ]=" ";
int NC;
 
struct z {
char name[20];
char vid[20];
long summa;
char data[11];
};
struct sp {
char fio[20];
long summa;
struct sp* sled;
} *spisok;
 
int menu(int);
void maxim(struct z*);
void first(struct z*);
void text_data(char *,char *);
void alfalist(struct z*);
void vstavka(struct z*,char*);
void listing(struct z*);
void diagram(struct z*);
 
int main(array<System::String ^> ^args)
{
int i,n;
FILE *f;
struct z *clients;
setlocale(LC_CTYPE,"Russian");
Console::CursorVisible::set(false);
Console::BufferHeight=Console::WindowHeight;
Console::BufferWidth=Console::WindowWidth;
f = fopen_s("C\\STUDENT\\football.dat","r");
if(f == 0)
{
    printf("The file 'football.dat' was opened\n");
}
else
{
    printf("The file 'football.dat' was not opened\n");
}
fscanf_s(f,"%d",&NC);
clients=(struct z*)malloc(NC*sizeof(struct z));
for(i=0;i<NC;i++)
fscanf(f,"%s%s%ld%s",clients[i].name,
clients[i].vid, &clients[i].summa,
clients[i].data);
for(i=0;i<NC;i++)
printf("\n%-20s %-20s %7ld %s",
clients[i].name,
clients[i].vid, clients[i].summa,
clients[i].data);
_getch();
 
while(1)
{
Console::ForegroundColor=ConsoleColor::Gray;
Console::BackgroundColor=ConsoleColor::Black;
Console::Clear();
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::Gray;
Console::CursorLeft=10;
Console::CursorTop=4;
printf(BlankLine);
for(i=0;i<6;i++)
{
Console::CursorLeft=10;
Console::CursorTop=i+5;
printf(" %s ",ball[i]);
}
Console::CursorLeft=10;
Console::CursorTop=12;
printf(BlankLine);
 
n=menu(6);
switch(n) {
case 1: maxim(clients); break;
case 2: first(clients); break;
case 3: listing(clients); break;
case 4: alfalist(clients); break;
case 5: diagram(clients); break;
case 6: exit(0);
        }
}
return 0;
}
 
int menu(int n)
{
int y1=0,y2=n-1;
char c=1;
while (c!=ESC)
{
switch(c) {
case DOWN: y2=y1; y1++; break;
case UP: y2=y1; y1--; break;
case ENTER: return y1+1;
}
if(y1>n-1){y2=n-1;y1=0;}
if(y1<0) {y2=0;y1=n-1;}
Console::ForegroundColor=ConsoleColor::White;
Console::BackgroundColor=ConsoleColor::Blue;
Console::CursorLeft=11;
Console::CursorTop=y1+5;
printf("%s",ball[y1]);
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::Gray;
Console::CursorLeft=11;
Console::CursorTop=y2+5;
printf("%s",ball[y2]);
c=getch();
}
exit(0);
}
 
void maxim(struct z* client)
{
int i=0; struct z best;
strcpy(best.name,client[0].name);
best.summa=client[0].summa;
for(i=1;i<NC;i++)
if (client[i].summa>best.summa)
{
strcpy(best.name,client[i].name);
best.summa=client[i].summa;
}
Console::ForegroundColor=ConsoleColor::Yellow;
Console::BackgroundColor=ConsoleColor::Black;
Console::CursorLeft=10;
Console::CursorTop=15;
printf("Максимальный зарплату %ld долларов",best.summa);
Console::CursorLeft=10;
Console::CursorTop=16;
printf("имеет футболист %s",best.name);
getch();
}
 
void text_data(char *s,char *sd)
{
char s0[3],month[12][9]={
"января","февраля","марта","апреля","мая","июня",
"июля","августа","сентября","октября","ноября","декабря"};
strcpy(s,sd+8);
strcat(s," ");
strncpy(s0,sd+5,2); s0[2]=0;
strcat(s,month[ atoi(s0)-1]);
strcat(s," ");
strncat(s,sd,4);
return;
}
 
void first(struct z* client)
{
int i;
char s[17];
struct z* best=client;
for(i=1;i<NC;i++)
if (strcmp(client[i].data,best->data)<0)
best=&client[i];
text_data(s,best->data);
 
Console::ForegroundColor=ConsoleColor::Yellow;
Console::BackgroundColor=ConsoleColor::Black;
Console::CursorLeft=10;
Console::CursorTop=15;
printf("Самый \"старый\" вклад %s на %ld р.",
best->vid,best->summa);
Console::CursorLeft=10;
Console::CursorTop=16;
printf("имеет вкладчик %s",best->name);
Console::CursorLeft=10;
Console::CursorTop=17;
printf("Открыт %s ",s);
getch();
}
 
void alfalist(struct z* client)
{
int i;
struct sp* nt;
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::Gray;
Console::Clear();
if(!spisok)
for(i=0;i<NC;i++)
vstavka(client,client[i].name);
Console::Clear();
printf("\n Алфавитный список футболистов ");
printf("\n ===============================\n");
for(nt=spisok; nt!=0; nt=nt->sled)
printf("\n %-20s %ld",nt->fio,nt->summa);
getch();
}
 
void vstavka(struct z* client,char* fio)
{
int i;
struct sp *nov,*nt,*z=0;
for(nt=spisok; nt!=0 && strcmp(nt->fio,fio)<0; z=nt, nt=nt->sled);
if(nt && strcmp(nt->fio,fio)==0) return;
nov=(struct sp *) malloc(sizeof(struct sp));
strcpy(nov->fio,fio);
nov->sled=nt;
nov->summa=0;
for(i=0;i<NC;i++)
if(strcmp(client[i].name,fio)==0)
nov->summa+=client[i].summa;
if(!z) spisok=nov;
else z->sled=nov;
return;
}
 
void listing(struct z* client)
{
int i;
struct z* nt;
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::Gray;
Console::Clear();
printf("\n\r Список футболситов с суммой свыше 13 млн.долларов");
printf("\n\r=====================================================\n\r");
for(i=0;nt=client;i<NC;nt++;i++)
if(nt->summa>13 && strcmp(nt->vid,"Срочный")==0)
printf("\n\r %-20s %ld р.",nt->name,nt->summa);
getch();
}
 
void diagram(struct z *client)
{
struct sp *nt;
int len,i,NColor;
long sum = 0 ;
char str1[20];
char str2[20];
System::ConsoleColor Color;
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::White;
Console::Clear();
for(i=0;i<NC;i++) sum = sum+client[i].summa ;
if(!spisok)
for(i=0;i<NC;i++)
vstavka(client,client[i].name);
Color=ConsoleColor::Black; NColor=0;
 
for(nt=spisok,i=0; nt!=0; nt=nt->sled,i++)
{
sprintf(str1,"%s",nt->fio);
sprintf(str2,"%3.1f%%",(nt->summa*100./sum));
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor= ConsoleColor::White;
Console::CursorLeft=5; Console::CursorTop=i+1;
printf(str1);
Console::CursorLeft=20;
printf("%s",str2);
Console::BackgroundColor=++Color; NColor++;
Console::CursorLeft=30;
for(len=0; len<nt->summa*100/sum; len++) printf(" ");
if(NColor==14)
{ Color=ConsoleColor::Black; NColor=0; }
}
getch();
return ;
}
Помогите пожалуйста перевести в C++ и в C
0
IT_Exp
Эксперт
34794 / 4073 / 2104
Регистрация: 17.06.2006
Сообщений: 32,602
Блог
24.03.2014, 20:50
Ответы с готовыми решениями:

Перевод из 16 в 2 сс и обратно
Помогите новичку. Нужна программа переводящая из 16 в 2 сс и обратно. Почитал, но до конца не разобрался, что не так? Как можно это сделать...

Перевод из 8 в 16 и обратно.
Написать программу используя функции WINAPI, кот при запуске создает окно, кот используется для вывода результатлв работы и завершает свое...

Перевод из 10 СС в 2 и обратно
В общем такая задача: Целое положительное число I записывается в двоичной системе счисления, и в этой записи разряды переставляются в...

9
Неэпический
 Аватар для Croessmah
18144 / 10728 / 2066
Регистрация: 27.09.2012
Сообщений: 27,026
Записей в блоге: 1
24.03.2014, 23:38
Цитата Сообщение от Slavos Посмотреть сообщение
Перевод из C в C++ и обратно
C++
1
2
3
using namespace std;
using namespace System;
using namespace System::IO;
О да, это Си!
0
Почетный модератор
Эксперт HTML/CSSЭксперт PHP
 Аватар для KOPOJI
16844 / 6724 / 880
Регистрация: 12.06.2012
Сообщений: 19,967
24.03.2014, 23:52
Вот, я его перевел на C++, половина осталась
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
#include "stdafx.h"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#include <malloc.h>
#include <clocale>
 
using namespace std;
using namespace System;
using namespace System::IO;
 
#define ENTER 13
#define ESC 27
#define UP 72
#define DOWN 80
 
 
char ball[6][43]={
"Какая зарплата является наибольшей ?",
"Кто из футболистов родился раньше всех ? ",
"У кого зарплата свыше 13 млн. долларов ? ",
"Алфавитный список всех футболистов ",
"Диаграмма. Процентное соотношение зарплат ",
"Выход "
};
char BlankLine[ ]=" ";
int NC;
 
struct z {
char name[20];
char vid[20];
long summa;
char data[11];
};
struct sp {
char fio[20];
long summa;
struct sp* sled;
} *spisok;
 
int menu(int);
void maxim(struct z*);
void first(struct z*);
void text_data(char *,char *);
void alfalist(struct z*);
void vstavka(struct z*,char*);
void listing(struct z*);
void diagram(struct z*);
 
int main(array<System::String ^> ^args)
{
int i,n;
FILE *f;
struct z *clients;
setlocale(LC_CTYPE,"Russian");
Console::CursorVisible::set(false);
Console::BufferHeight=Console::WindowHeight;
Console::BufferWidth=Console::WindowWidth;
f = fopen_s("C\\STUDENT\\football.dat","r");
if(f == 0)
{
    printf("The file 'football.dat' was opened\n");
}
else
{
    printf("The file 'football.dat' was not opened\n");
}
fscanf_s(f,"%d",&NC);
clients=(struct z*)malloc(NC*sizeof(struct z));
for(i=0;i<NC;i++)
fscanf(f,"%s%s%ld%s",clients[i].name,
clients[i].vid, &clients[i].summa,
clients[i].data);
for(i=0;i<NC;i++)
printf("\n%-20s %-20s %7ld %s",
clients[i].name,
clients[i].vid, clients[i].summa,
clients[i].data);
_getch();
 
while(1)
{
Console::ForegroundColor=ConsoleColor::Gray;
Console::BackgroundColor=ConsoleColor::Black;
Console::Clear();
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::Gray;
Console::CursorLeft=10;
Console::CursorTop=4;
printf(BlankLine);
for(i=0;i<6;i++)
{
Console::CursorLeft=10;
Console::CursorTop=i+5;
printf(" %s ",ball[i]);
}
Console::CursorLeft=10;
Console::CursorTop=12;
printf(BlankLine);
 
n=menu(6);
switch(n) {
case 1: maxim(clients); break;
case 2: first(clients); break;
case 3: listing(clients); break;
case 4: alfalist(clients); break;
case 5: diagram(clients); break;
case 6: exit(0);
        }
}
return 0;
}
 
int menu(int n)
{
int y1=0,y2=n-1;
char c=1;
while (c!=ESC)
{
switch(c) {
case DOWN: y2=y1; y1++; break;
case UP: y2=y1; y1--; break;
case ENTER: return y1+1;
}
if(y1>n-1){y2=n-1;y1=0;}
if(y1<0) {y2=0;y1=n-1;}
Console::ForegroundColor=ConsoleColor::White;
Console::BackgroundColor=ConsoleColor::Blue;
Console::CursorLeft=11;
Console::CursorTop=y1+5;
printf("%s",ball[y1]);
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::Gray;
Console::CursorLeft=11;
Console::CursorTop=y2+5;
printf("%s",ball[y2]);
c=getch();
}
exit(0);
}
 
void maxim(struct z* client)
{
int i=0; struct z best;
strcpy(best.name,client[0].name);
best.summa=client[0].summa;
for(i=1;i<NC;i++)
if (client[i].summa>best.summa)
{
strcpy(best.name,client[i].name);
best.summa=client[i].summa;
}
Console::ForegroundColor=ConsoleColor::Yellow;
Console::BackgroundColor=ConsoleColor::Black;
Console::CursorLeft=10;
Console::CursorTop=15;
printf("Максимальный зарплату %ld долларов",best.summa);
Console::CursorLeft=10;
Console::CursorTop=16;
printf("имеет футболист %s",best.name);
getch();
}
 
void text_data(char *s,char *sd)
{
char s0[3],month[12][9]={
"января","февраля","марта","апреля","мая","июня",
"июля","августа","сентября","октября","ноября","декабря"};
strcpy(s,sd+8);
strcat(s," ");
strncpy(s0,sd+5,2); s0[2]=0;
strcat(s,month[ atoi(s0)-1]);
strcat(s," ");
strncat(s,sd,4);
return;
}
 
void first(struct z* client)
{
int i;
char s[17];
struct z* best=client;
for(i=1;i<NC;i++)
if (strcmp(client[i].data,best->data)<0)
best=&client[i];
text_data(s,best->data);
 
Console::ForegroundColor=ConsoleColor::Yellow;
Console::BackgroundColor=ConsoleColor::Black;
Console::CursorLeft=10;
Console::CursorTop=15;
printf("Самый \"старый\" вклад %s на %ld р.",
best->vid,best->summa);
Console::CursorLeft=10;
Console::CursorTop=16;
printf("имеет вкладчик %s",best->name);
Console::CursorLeft=10;
Console::CursorTop=17;
printf("Открыт %s ",s);
getch();
}
 
void alfalist(struct z* client)
{
int i;
struct sp* nt;
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::Gray;
Console::Clear();
if(!spisok)
for(i=0;i<NC;i++)
vstavka(client,client[i].name);
Console::Clear();
printf("\n Алфавитный список футболистов ");
printf("\n ===============================\n");
for(nt=spisok; nt!=0; nt=nt->sled)
printf("\n %-20s %ld",nt->fio,nt->summa);
getch();
}
 
void vstavka(struct z* client,char* fio)
{
int i;
struct sp *nov,*nt,*z=0;
for(nt=spisok; nt!=0 && strcmp(nt->fio,fio)<0; z=nt, nt=nt->sled);
if(nt && strcmp(nt->fio,fio)==0) return;
nov=(struct sp *) malloc(sizeof(struct sp));
strcpy(nov->fio,fio);
nov->sled=nt;
nov->summa=0;
for(i=0;i<NC;i++)
if(strcmp(client[i].name,fio)==0)
nov->summa+=client[i].summa;
if(!z) spisok=nov;
else z->sled=nov;
return;
}
 
void listing(struct z* client)
{
int i;
struct z* nt;
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::Gray;
Console::Clear();
printf("\n\r Список футболситов с суммой свыше 13 млн.долларов");
printf("\n\r=====================================================\n\r");
for(i=0;nt=client;i<NC;nt++;i++)
if(nt->summa>13 && strcmp(nt->vid,"Срочный")==0)
printf("\n\r %-20s %ld р.",nt->name,nt->summa);
getch();
}
 
void diagram(struct z *client)
{
struct sp *nt;
int len,i,NColor;
long sum = 0 ;
char str1[20];
char str2[20];
System::ConsoleColor Color;
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor=ConsoleColor::White;
Console::Clear();
for(i=0;i<NC;i++) sum = sum+client[i].summa ;
if(!spisok)
for(i=0;i<NC;i++)
vstavka(client,client[i].name);
Color=ConsoleColor::Black; NColor=0;
 
for(nt=spisok,i=0; nt!=0; nt=nt->sled,i++)
{
sprintf(str1,"%s",nt->fio);
sprintf(str2,"%3.1f%%",(nt->summa*100./sum));
Console::ForegroundColor=ConsoleColor::Black;
Console::BackgroundColor= ConsoleColor::White;
Console::CursorLeft=5; Console::CursorTop=i+1;
printf(str1);
Console::CursorLeft=20;
printf("%s",str2);
Console::BackgroundColor=++Color; NColor++;
Console::CursorLeft=30;
for(len=0; len<nt->summa*100/sum; len++) printf(" ");
if(NColor==14)
{ Color=ConsoleColor::Black; NColor=0; }
}
getch();
return ;
}
0
Неэпический
 Аватар для Croessmah
18144 / 10728 / 2066
Регистрация: 27.09.2012
Сообщений: 27,026
Записей в блоге: 1
24.03.2014, 23:53
Цитата Сообщение от KOPOJI Посмотреть сообщение
на C++
C++/CLI
0
24.03.2014, 23:55

Не по теме:

Croessmah, да пофигу, если честно, я так, мимо пробегал..)

0
25.03.2014, 00:04

Не по теме:

Цитата Сообщение от KOPOJI Посмотреть сообщение
да пофигу, если честно, я так, мимо пробегал..)
пробежал тут, натоптал :-/ :D

0
25.03.2014, 16:10

Не по теме:

Цитата Сообщение от Croessmah Посмотреть сообщение
пробежал тут, натоптал
Веничком его, веничком! :rofl:

0
25.03.2014, 17:49

Не по теме:

вот все вы так, лишь бы "веничком" бедному, несчастному супер-модератору :-/

0
25.03.2014, 17:54

Не по теме:

Цитата Сообщение от KOPOJI Посмотреть сообщение
вот все вы так, лишь бы "веничком" бедному, несчастному супер-модератору
аж позеленел, бедняжка :cry::D

0
25.03.2014, 18:24

Не по теме:

Цитата Сообщение от KOPOJI Посмотреть сообщение
лишь бы "веничком"
А может веничек из цветов, или в бане :wizard:

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

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

Перевод числа в строку и обратно
Какие есть ф-ции для перевода числа в строку и обратно? и можно-ли их будет записывать через getline() ? Например строка hello45who не...

Перевод изображения в массив и обратно
Здравствуйте, уважаемые форумчане! Немного предыстории, недавно я написал нейросеть которая должна распознавать лица, но она не обучалась,...

Перевод из текста в hex и обратно
Доброго времени суток. Прошу помощи в решении задачи: в edit вводим текст к примеру &quot;Конст&quot;, по нажатию button1 в edit2 переводит...

Перевод String->char и обратно
нужна ваша помощь)) сперва перевожу строку из текстбокса в переменную типа чар: System::String^ str=textBox2-&gt;Text; for(int...


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

Или воспользуйтесь поиском по форуму:
10
Ответ Создать тему
Новые блоги и статьи
Owen Logic: О недопустимости использования связки «аналоговый ПИД» + RegKZR
ФедосеевПавел 06.01.2026
Owen Logic: О недопустимости использования связки «аналоговый ПИД» + RegKZR ВВЕДЕНИЕ Введу сокращения: аналоговый ПИД — ПИД регулятор с управляющим выходом в виде числа в диапазоне от 0% до. . .
Модель микоризы: классовый агентный подход 2
anaschu 06.01.2026
репозиторий https:/ / github. com/ shumilovas/ fungi ветка по-частям. коммит Create переделка под биомассу. txt вход sc, но sm считается внутри мицелия. кстати, обьем тоже должен там считаться. . . .
Расчёт токов в цепи постоянного тока
igorrr37 05.01.2026
/ * Дана цепь постоянного тока с сопротивлениями и напряжениями. Надо найти токи в ветвях. Программа составляет систему уравнений по 1 и 2 законам Кирхгофа и решает её. Последовательность действий:. . .
Новый CodeBlocs. Версия 25.03
palva 04.01.2026
Оказывается, недавно вышла новая версия CodeBlocks за номером 25. 03. Когда-то давно я возился с только что вышедшей тогда версией 20. 03. С тех пор я давно снёс всё с компьютера и забыл. Теперь. . .
Модель микоризы: классовый агентный подход
anaschu 02.01.2026
Раньше это было два гриба и бактерия. Теперь три гриба, растение. И на уровне агентов добавится между грибами или бактериями взаимодействий. До того я пробовал подход через многомерные массивы,. . .
Советы по крайней бережливости. Внимание, это ОЧЕНЬ длинный пост.
Programma_Boinc 28.12.2025
Советы по крайней бережливости. Внимание, это ОЧЕНЬ длинный пост. Налог на собак: https:/ / **********/ gallery/ V06K53e Финансовый отчет в Excel: https:/ / **********/ gallery/ bKBkQFf Пост отсюда. . .
Кто-нибудь знает, где можно бесплатно получить настольный компьютер или ноутбук? США.
Programma_Boinc 26.12.2025
Нашел на реддите интересную статью под названием Anyone know where to get a free Desktop or Laptop? Ниже её машинный перевод. После долгих разбирательств я наконец-то вернула себе. . .
Thinkpad X220 Tablet — это лучший бюджетный ноутбук для учёбы, точка.
Programma_Boinc 23.12.2025
Рецензия / Мнение/ Перевод Нашел на реддите интересную статью под названием The Thinkpad X220 Tablet is the best budget school laptop period . Ниже её машинный перевод. Thinkpad X220 Tablet —. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru