Форум программистов, компьютерный форум, киберфорум
C++
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
Нокси

помогите плиз написать программу, которая будет парсить XML по заданным условиям

10.10.2011, 10:15. Показов 1428. Ответов 0
Метки нет (Все метки)

Студворк — интернет-сервис помощи студентам
Пользователь запускает программу, получает диалог вида
"Path to XML: "
задает путь до файла,
"Print files,
1. Video
2. Audio"
пользователь нажимает нужную цифру и Enter
" Stream Size "
пользователь вводит критерий поиска > или < (x)
x - процентов.

На выходе получает список файлов вида:

%FileName% (из тега <track type='General' и далее дочерние от него)
Format: (из тега <Format>)
Duration: (из тега <Duration>)

(из тега <track type='Video'> и далее дочение от него)
Format Video: (из тега <Format>)
BitRate Video: (из тега <Bit_rate>)
Stream Size: (из тега <Stream_Size>)

(из тега <track type='Audio'> и далее дочерние от него)
Format Audio: (из тега <Format>)
BitRate Audio: (из тега <Bit_rate>)
Stream Size: (из тега <Stream_Size>)


Пример работы программы:

Path to file:
C:\xmlFile\FilesInfo.xml

Print Files,
1. Video
2. Audio

2

Stream Size

> 50%



FileName: 5

Format: AVI
Duration: 15s 913ms

Format Video: MPEG-4 Visual
BitRate Video: 118 Kbps
Stream Size: 230KiB (36%)

Format Audio: MPEG Audio
BitRate Audio: 192 Kbps
Stream Size: 373 KiB (59%)


FileName: 6

Format: AVI
Duration: 9s 400ms

Format Video: MPEG-4 Visual
BitRate Video: 72.8 Kbps
Stream Size: 83.5 KiB (34%)

Format Audio: MPEG Audio
BitRate Audio: 128 Kbps
Stream Size: 146 KiB (59%)

файл :

XML
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
<Mediainfo version="0.7.44">
<File>
<FileName>1</FileName>
<track type="General">
<Format>AVI</Format>
<Format_Info>Audio Video Interleave</Format_Info>
<Duration>8s 333ms</Duration>
<Overall_bit_rate>3 403 Kbps</Overall_bit_rate>
</track>
<track type="Video">
<ID>0</ID>
<Format>MPEG-4 Visual</Format>
<Format_profile>Advanced Simple@L5</Format_profile>
<Format_settings__BVOP>No</Format_settings__BVOP>
<Format_settings__QPel>No</Format_settings__QPel>
<Format_settings__GMC>No warppoints</Format_settings__GMC>
<Format_settings__Matrix>Default (MPEG)</Format_settings__Matrix>
<Codec_ID>XVID</Codec_ID>
<Codec_ID_Hint>XviD</Codec_ID_Hint>
<Duration>8s 333ms</Duration>
<Bit_rate>3 202 Kbps</Bit_rate>
<Width>1 280 pixels</Width>
<Height>720 pixels</Height>
<Display_aspect_ratio>16:9</Display_aspect_ratio>
<Frame_rate>3.000 fps</Frame_rate>
<Color_space>YUV</Color_space>
<Chroma_subsampling>4:2:0</Chroma_subsampling>
<Bit_depth>8 bits</Bit_depth>
<Scan_type>Progressive</Scan_type>
<Compression_mode>Lossy</Compression_mode>
<Bits__Pixel_Frame_>1.158</Bits__Pixel_Frame_>
<Stream_size>3.18 MiB (94%)</Stream_size>
<Writing_library>XviD 62</Writing_library>
</track>
<track type="Audio">
<ID>1</ID>
<Format>MPEG Audio</Format>
<Format_version>Version 1</Format_version>
<Format_profile>Layer 3</Format_profile>
<Codec_ID>55</Codec_ID>
<Codec_ID_Hint>MP3</Codec_ID_Hint>
<Duration>8s 260ms</Duration>
<Bit_rate_mode>Constant</Bit_rate_mode>
<Bit_rate>192 Kbps</Bit_rate>
<Channel_s_>2 channels</Channel_s_>
<Sampling_rate>44.1 KHz</Sampling_rate>
<Compression_mode>Lossy</Compression_mode>
<Stream_size>194 KiB (6%)</Stream_size>
<Alignment>Split accross interleaves</Alignment>
<Interleave__duration>333 ms (1.00 video frame)</Interleave__duration>
<Writing_library>LAMELAME_MAJOR_VERSI</Writing_library>
</track>
</File>
<File>
<FileName>2</FileName>
<track type="General">
<Format>AVI</Format>
<Format_Info>Audio Video Interleave</Format_Info>
<Duration>4s 833ms</Duration>
<Overall_bit_rate>230 Kbps</Overall_bit_rate>
</track>
<track type="Video">
<ID>0</ID>
<Format>MPEG-4 Visual</Format>
<Format_profile>Simple@L1</Format_profile>
<Format_settings__BVOP>No</Format_settings__BVOP>
<Format_settings__QPel>No</Format_settings__QPel>
<Format_settings__GMC>No warppoints</Format_settings__GMC>
<Format_settings__Matrix>Default (H.263)</Format_settings__Matrix>
<Codec_ID>FMP4</Codec_ID>
<Duration>4s 833ms</Duration>
<Bit_rate>116 Kbps</Bit_rate>
<Width>240 pixels</Width>
<Height>180 pixels</Height>
<Display_aspect_ratio>4:3</Display_aspect_ratio>
<Frame_rate>6.000 fps</Frame_rate>
<Color_space>YUV</Color_space>
<Chroma_subsampling>4:2:0</Chroma_subsampling>
<Bit_depth>8 bits</Bit_depth>
<Scan_type>Progressive</Scan_type>
<Compression_mode>Lossy</Compression_mode>
<Bits__Pixel_Frame_>0.449</Bits__Pixel_Frame_>
<Stream_size>68.7 KiB (51%)</Stream_size>
<Writing_library>Lavc52.88.0</Writing_library>
</track>
<track type="Audio">
<ID>1</ID>
<Format>MPEG Audio</Format>
<Format_version>Version 1</Format_version>
<Format_profile>Layer 3</Format_profile>
<Codec_ID>55</Codec_ID>
<Codec_ID_Hint>MP3</Codec_ID_Hint>
<Duration>4s 735ms</Duration>
<Bit_rate_mode>Constant</Bit_rate_mode>
<Bit_rate>96.0 Kbps</Bit_rate>
<Channel_s_>2 channels</Channel_s_>
<Sampling_rate>44.1 KHz</Sampling_rate>
<Compression_mode>Lossy</Compression_mode>
<Stream_size>55.5 KiB (41%)</Stream_size>
<Alignment>Split accross interleaves</Alignment>
<Interleave__duration>167 ms (1.00 video frame)</Interleave__duration>
<Writing_library>LAMELAME_MAJOR_VERSI</Writing_library>
</track>
</File>
<File>
<FileName>3</FileName>
<track type="General">
<Format>AVI</Format>
<Format_Info>Audio Video Interleave</Format_Info>
<Duration>3mn 50s</Duration>
<Overall_bit_rate>324 Kbps</Overall_bit_rate>
</track>
<track type="Video">
<ID>0</ID>
<Format>AVC</Format>
<Format_Info>Advanced Video Codec</Format_Info>
<Format_profile>High@L5.1</Format_profile>
<Format_settings__CABAC>Yes</Format_settings__CABAC>
<Format_settings__ReFrames>1 frame</Format_settings__ReFrames>
<Codec_ID>H264</Codec_ID>
<Duration>3mn 50s</Duration>
<Bit_rate>224 Kbps</Bit_rate>
<Width>96 pixels</Width>
<Height>64 pixels</Height>
<Display_aspect_ratio>3:2</Display_aspect_ratio>
<Frame_rate>10.000 fps</Frame_rate>
<Color_space>YUV</Color_space>
<Chroma_subsampling>4:2:0</Chroma_subsampling>
<Bit_depth>8 bits</Bit_depth>
<Scan_type>Progressive</Scan_type>
<Bits__Pixel_Frame_>3.649</Bits__Pixel_Frame_>
<Stream_size>6.15 MiB (69%)</Stream_size>
</track>
<track type="Audio">
<ID>1</ID>
<Format>MPEG Audio</Format>
<Format_version>Version 1</Format_version>
<Format_profile>Layer 3</Format_profile>
<Codec_ID>55</Codec_ID>
<Codec_ID_Hint>MP3</Codec_ID_Hint>
<Duration>3mn 50s</Duration>
<Bit_rate_mode>Constant</Bit_rate_mode>
<Bit_rate>96.0 Kbps</Bit_rate>
<Channel_s_>2 channels</Channel_s_>
<Sampling_rate>44.1 KHz</Sampling_rate>
<Compression_mode>Lossy</Compression_mode>
<Stream_size>2.64 MiB (30%)</Stream_size>
<Alignment>Split accross interleaves</Alignment>
<Interleave__duration>100 ms (1.00 video frame)</Interleave__duration>
<Interleave__preload_duration>712 ms</Interleave__preload_duration>
<Writing_library>LAMELAME_MAJOR_VERSI</Writing_library>
</track>
</File>
<File>
<FileName>4</FileName>
<track type="General">
<Format>AVI</Format>
<Format_Info>Audio Video Interleave</Format_Info>
<Duration>34s 85ms</Duration>
<Overall_bit_rate>580 Kbps</Overall_bit_rate>
</track>
<track type="Video">
<ID>0</ID>
<Format>MPEG-4 Visual</Format>
<Format_profile>Simple@L1</Format_profile>
<Format_settings__BVOP>No</Format_settings__BVOP>
<Format_settings__QPel>No</Format_settings__QPel>
<Format_settings__GMC>No warppoints</Format_settings__GMC>
<Format_settings__Matrix>Default (H.263)</Format_settings__Matrix>
<Codec_ID>FMP4</Codec_ID>
<Duration>34s 85ms</Duration>
<Bit_rate>472 Kbps</Bit_rate>
<Width>320 pixels</Width>
<Height>240 pixels</Height>
<Display_aspect_ratio>4:3</Display_aspect_ratio>
<Frame_rate>23.735 fps</Frame_rate>
<Color_space>YUV</Color_space>
<Chroma_subsampling>4:2:0</Chroma_subsampling>
<Bit_depth>8 bits</Bit_depth>
<Scan_type>Progressive</Scan_type>
<Compression_mode>Lossy</Compression_mode>
<Bits__Pixel_Frame_>0.259</Bits__Pixel_Frame_>
<Stream_size>1.92 MiB (81%)</Stream_size>
<Writing_library>Lavc52.88.0</Writing_library>
</track>
<track type="Audio">
<ID>1</ID>
<Format>MPEG Audio</Format>
<Format_version>Version 1</Format_version>
<Format_profile>Layer 3</Format_profile>
<Codec_ID>55</Codec_ID>
<Codec_ID_Hint>MP3</Codec_ID_Hint>
<Duration>33s 992ms</Duration>
<Bit_rate_mode>Constant</Bit_rate_mode>
<Bit_rate>96.0 Kbps</Bit_rate>
<Channel_s_>2 channels</Channel_s_>
<Sampling_rate>44.1 KHz</Sampling_rate>
<Compression_mode>Lossy</Compression_mode>
<Stream_size>398 KiB (17%)</Stream_size>
<Alignment>Split accross interleaves</Alignment>
<Interleave__duration>42 ms (1.00 video frame)</Interleave__duration>
</track>
</File>
<File>
<FileName>5</FileName>
<track type="General">
<Format>AVI</Format>
<Format_Info>Audio Video Interleave</Format_Info>
<Duration>15s 913ms</Duration>
<Overall_bit_rate>324 Kbps</Overall_bit_rate>
</track>
<track type="Video">
<ID>0</ID>
<Format>MPEG-4 Visual</Format>
<Format_profile>Advanced Simple@L5</Format_profile>
<Format_settings__BVOP>2</Format_settings__BVOP>
<Format_settings__QPel>No</Format_settings__QPel>
<Format_settings__GMC>No warppoints</Format_settings__GMC>
<Format_settings__Matrix>Default (MPEG)</Format_settings__Matrix>
<Muxing_mode>Packed bitstream</Muxing_mode>
<Codec_ID>XVID</Codec_ID>
<Codec_ID_Hint>XviD</Codec_ID_Hint>
<Duration>15s 901ms</Duration>
<Bit_rate>118 Kbps</Bit_rate>
<Width>160 pixels</Width>
<Height>120 pixels</Height>
<Display_aspect_ratio>4:3</Display_aspect_ratio>
<Frame_rate>23.332 fps</Frame_rate>
<Original_frame_rate>23.333 fps</Original_frame_rate>
<Color_space>YUV</Color_space>
<Chroma_subsampling>4:2:0</Chroma_subsampling>
<Bit_depth>8 bits</Bit_depth>
<Scan_type>Progressive</Scan_type>
<Compression_mode>Lossy</Compression_mode>
<Bits__Pixel_Frame_>0.264</Bits__Pixel_Frame_>
<Stream_size>230 KiB (36%)</Stream_size>
<Writing_library>XviD 62</Writing_library>
</track>
<track type="Audio">
<ID>1</ID>
<Format>MPEG Audio</Format>
<Format_version>Version 1</Format_version>
<Format_profile>Layer 3</Format_profile>
<Codec_ID>55</Codec_ID>
<Codec_ID_Hint>MP3</Codec_ID_Hint>
<Duration>15s 913ms</Duration>
<Bit_rate_mode>Constant</Bit_rate_mode>
<Bit_rate>192 Kbps</Bit_rate>
<Channel_s_>2 channels</Channel_s_>
<Sampling_rate>44.1 KHz</Sampling_rate>
<Compression_mode>Lossy</Compression_mode>
<Stream_size>373 KiB (59%)</Stream_size>
<Alignment>Split accross interleaves</Alignment>
<Interleave__duration>45 ms (1.05 video frame)</Interleave__duration>
<Writing_library>LAMELAME_MAJOR_VERSI</Writing_library>
</track>
</File>
<File>
<FileName>6</FileName>
<track type="General">
<Format>AVI</Format>
<Format_Info>Audio Video Interleave</Format_Info>
<Duration>9s 400ms</Duration>
<Overall_bit_rate>214 Kbps</Overall_bit_rate>
</track>
<track type="Video">
<ID>0</ID>
<Format>MPEG-4 Visual</Format>
<Format_profile>Advanced Simple@L5</Format_profile>
<Format_settings__BVOP>No</Format_settings__BVOP>
<Format_settings__QPel>No</Format_settings__QPel>
<Format_settings__GMC>No warppoints</Format_settings__GMC>
<Format_settings__Matrix>Default (H.263)</Format_settings__Matrix>
<Codec_ID>XVID</Codec_ID>
<Codec_ID_Hint>XviD</Codec_ID_Hint>
<Duration>9s 400ms</Duration>
<Bit_rate>72.8 Kbps</Bit_rate>
<Width>480 pixels</Width>
<Height>272 pixels</Height>
<Display_aspect_ratio>16:9</Display_aspect_ratio>
<Frame_rate>15.000 fps</Frame_rate>
<Color_space>YUV</Color_space>
<Chroma_subsampling>4:2:0</Chroma_subsampling>
<Bit_depth>8 bits</Bit_depth>
<Scan_type>Progressive</Scan_type>
<Compression_mode>Lossy</Compression_mode>
<Bits__Pixel_Frame_>0.037</Bits__Pixel_Frame_>
<Stream_size>83.5 KiB (34%)</Stream_size>
<Writing_library>XviD 62</Writing_library>
</track>
<track type="Audio">
<ID>1</ID>
<Format>MPEG Audio</Format>
<Format_version>Version 1</Format_version>
<Format_profile>Layer 3</Format_profile>
<Codec_ID>55</Codec_ID>
<Codec_ID_Hint>MP3</Codec_ID_Hint>
<Duration>9s 318ms</Duration>
<Bit_rate_mode>Constant</Bit_rate_mode>
<Bit_rate>128 Kbps</Bit_rate>
<Channel_s_>2 channels</Channel_s_>
<Sampling_rate>44.1 KHz</Sampling_rate>
<Compression_mode>Lossy</Compression_mode>
<Stream_size>146 KiB (59%)</Stream_size>
<Alignment>Split accross interleaves</Alignment>
<Interleave__duration>68 ms (1.01 video frame)</Interleave__duration>
<Writing_library>LAMELAME_MAJOR_VERSI</Writing_library>
</track>
</File>
<File>
<FileName>7</FileName>
<track type="General">
<Format>AVI</Format>
<Format_Info>Audio Video Interleave</Format_Info>
<Duration>15s 516ms</Duration>
<Overall_bit_rate>1 628 Kbps</Overall_bit_rate>
</track>
<track type="Video">
<ID>0</ID>
<Format>MPEG-4 Visual</Format>
<Format_profile>Advanced Simple@L0</Format_profile>
<Format_settings__BVOP>No</Format_settings__BVOP>
<Format_settings__QPel>No</Format_settings__QPel>
<Format_settings__GMC>No warppoints</Format_settings__GMC>
<Format_settings__Matrix>Default (MPEG)</Format_settings__Matrix>
<Codec_ID>XVID</Codec_ID>
<Codec_ID_Hint>XviD</Codec_ID_Hint>
<Duration>15s 516ms</Duration>
<Bit_rate>1 420 Kbps</Bit_rate>
<Width>720 pixels</Width>
<Height>480 pixels</Height>
<Display_aspect_ratio>3:2</Display_aspect_ratio>
<Frame_rate>29.970 fps</Frame_rate>
<Standard>NTSC</Standard>
<Color_space>YUV</Color_space>
<Chroma_subsampling>4:2:0</Chroma_subsampling>
<Bit_depth>8 bits</Bit_depth>
<Scan_type>Progressive</Scan_type>
<Compression_mode>Lossy</Compression_mode>
<Bits__Pixel_Frame_>0.137</Bits__Pixel_Frame_>
<Stream_size>2.63 MiB (87%)</Stream_size>
<Writing_library>XviD 62</Writing_library>
</track>
<track type="Audio">
<ID>1</ID>
<Format>MPEG Audio</Format>
<Format_version>Version 1</Format_version>
<Format_profile>Layer 3</Format_profile>
<Codec_ID>55</Codec_ID>
<Codec_ID_Hint>MP3</Codec_ID_Hint>
<Duration>15s 448ms</Duration>
<Bit_rate_mode>Constant</Bit_rate_mode>
<Bit_rate>192 Kbps</Bit_rate>
<Channel_s_>2 channels</Channel_s_>
<Sampling_rate>44.1 KHz</Sampling_rate>
<Compression_mode>Lossy</Compression_mode>
<Stream_size>362 KiB (12%)</Stream_size>
<Alignment>Split accross interleaves</Alignment>
<Interleave__duration>37 ms (1.11 video frame)</Interleave__duration>
</track>
</File>
<File>
<FileName>8</FileName>
<track type="General">
<Format>AVI</Format>
<Format_Info>Audio Video Interleave</Format_Info>
<Duration>29s 80ms</Duration>
<Overall_bit_rate>1 228 Kbps</Overall_bit_rate>
</track>
<track type="Video">
<ID>0</ID>
<Format>MPEG-4 Visual</Format>
<Format_profile>Advanced Simple@L0</Format_profile>
<Format_settings__BVOP>No</Format_settings__BVOP>
<Format_settings__QPel>No</Format_settings__QPel>
<Format_settings__GMC>No warppoints</Format_settings__GMC>
<Format_settings__Matrix>Default (MPEG)</Format_settings__Matrix>
<Codec_ID>XVID</Codec_ID>
<Codec_ID_Hint>XviD</Codec_ID_Hint>
<Duration>29s 80ms</Duration>
<Bit_rate>1 024 Kbps</Bit_rate>
<Width>640 pixels</Width>
<Height>480 pixels</Height>
<Display_aspect_ratio>4:3</Display_aspect_ratio>
<Frame_rate>25.000 fps</Frame_rate>
<Color_space>YUV</Color_space>
<Chroma_subsampling>4:2:0</Chroma_subsampling>
<Bit_depth>8 bits</Bit_depth>
<Scan_type>Progressive</Scan_type>
<Compression_mode>Lossy</Compression_mode>
<Bits__Pixel_Frame_>0.133</Bits__Pixel_Frame_>
<Stream_size>3.55 MiB (83%)</Stream_size>
<Writing_library>XviD 62</Writing_library>
</track>
<track type="Audio">
<ID>1</ID>
<Format>MPEG Audio</Format>
<Format_version>Version 1</Format_version>
<Format_profile>Layer 3</Format_profile>
<Codec_ID>55</Codec_ID>
<Codec_ID_Hint>MP3</Codec_ID_Hint>
<Duration>29s 31ms</Duration>
<Bit_rate_mode>Constant</Bit_rate_mode>
<Bit_rate>192 Kbps</Bit_rate>
<Channel_s_>2 channels</Channel_s_>
<Sampling_rate>44.1 KHz</Sampling_rate>
<Compression_mode>Lossy</Compression_mode>
<Stream_size>680 KiB (16%)</Stream_size>
<Alignment>Split accross interleaves</Alignment>
<Interleave__duration>42 ms (1.05 video frame)</Interleave__duration>
<Writing_library>LAMELAME_MAJOR_VERSI</Writing_library>
</track>
</File>
</Mediainfo>
Programming
Эксперт
39485 / 9562 / 3019
Регистрация: 12.04.2006
Сообщений: 41,671
Блог
10.10.2011, 10:15
Ответы с готовыми решениями:

Написать программу, которая будет выводить значения АЧХ и ФЧХ по заданным параметрам
Здравствуйте помогите пожалуйста написать программу которая будет выводить значения АЧХ и ФЧХ по заданным параметрам R (сопротивления)...

Помогите составить регулярку,Которая будет парсить все ссылки на странице,а именно...
Помогите составить регулярку,Которая будет парсить все ссылки на странице,а именно...мне нужно найти все &lt;a href=''www.site.ru&quot;&gt;

помогите написать программу которая будет строить график параболы
:mrgreen: помогите написать программу которая будет строить график параболы вида K*X*X+B*X+C, ГДЕ K, B, C ВВОДИТ ПОЛЬЗОВАТЕЛЬ. пРИЧЕМ ОСИ...

0
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
inter-admin
Эксперт
29715 / 6470 / 2152
Регистрация: 06.03.2009
Сообщений: 28,500
Блог
10.10.2011, 10:15
Помогаю со студенческими работами здесь

Составьте программу, которая напечатает на экране число, удовлетворяющее заданным условиям
Составьте программу, которая напечатает на экране число, удовлетворяющее следующим условиям: 1.Запись числа состоит из семи цифр. ...

Помогите написать программу, плиз...
Цель работы:Дана функция, заданная бесконечным рядом. С клавиатуры вводятся x и e(e - точность 0,001 - 0,00001), нужно вычислить...

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

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

Написать программу которая будет требовать пароль до тех пор пока он не будет введен верно
Написать программу которая будет требовать пароль до тех пор пока он не будет введен верно.


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

Или воспользуйтесь поиском по форуму:
1
Ответ Создать тему
Новые блоги и статьи
Оттенки серого
Argus19 18.03.2026
Оттенки серого Нашёл в интернете 3 прекрасных модуля: Модуль класса открытия диалога открытия/ сохранения файла на Win32 API; Модуль класса быстрого перекодирования цветного изображения в оттенки. . .
SDL3 для Desktop (MinGW): Рисуем цветные прямоугольники с помощью рисовальщика SDL3 на Си и C++
8Observer8 17.03.2026
Содержание блога Финальные проекты на Си и на C++: finish-rectangles-sdl3-c. zip finish-rectangles-sdl3-cpp. zip
Символические и жёсткие ссылки в Linux.
algri14 15.03.2026
Существует два типа ссылок — символические и жёсткие. Ссылка в Linux — это запись в каталоге, которая может указывать либо на inode «файла-ИСТОЧНИКА», тогда это будет «жёсткая ссылка» (hard link),. . .
[Owen Logic] Поддержание уровня воды в резервуаре количеством включённых насосов: моделирование и выбор регулятора
ФедосеевПавел 14.03.2026
Поддержание уровня воды в резервуаре количеством включённых насосов: моделирование и выбор регулятора ВВЕДЕНИЕ Выполняя задание на управление насосной группой заполнения резервуара,. . .
делаю науч статью по влиянию грибов на сукцессию
anaschu 13.03.2026
прикрепляю статью
SDL3 для Desktop (MinGW): Создаём пустое окно с нуля для 2D-графики на SDL3, Си и C++
8Observer8 10.03.2026
Содержание блога Финальные проекты на Си и на C++: hello-sdl3-c. zip hello-sdl3-cpp. zip Результат:
Установка CMake и MinGW 13.1 для сборки С и C++ приложений из консоли и из Qt Creator в EXE
8Observer8 10.03.2026
Содержание блога MinGW - это коллекция инструментов для сборки приложений в EXE. CMake - это система сборки приложений. Здесь описаны базовые шаги для старта программирования с помощью CMake и. . .
Как дизайн сайта влияет на конверсию: 7 решений, которые реально повышают заявки
Neotwalker 08.03.2026
Многие до сих пор воспринимают дизайн сайта как “красивую оболочку”. На практике всё иначе: дизайн напрямую влияет на то, оставит человек заявку или уйдёт через несколько секунд. Даже если у вас. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru