В
Все
М
Математика
О
ОБЖ
У
Українська мова
Д
Другие предметы
Х
Химия
М
Музыка
Н
Немецкий язык
Б
Беларуская мова
Э
Экономика
Ф
Физика
Б
Биология
О
Окружающий мир
Р
Русский язык
У
Українська література
Ф
Французский язык
П
Психология
А
Алгебра
О
Обществознание
М
МХК
В
Видео-ответы
Г
География
П
Право
Г
Геометрия
А
Английский язык
И
Информатика
Қ
Қазақ тiлi
Л
Литература
И
История
Лаймик0
Лаймик0
14.04.2023 14:21 •  Информатика

Имеем дело с Visual Studio 2019, c++ .
Нужно создать оконное приложение, используя MyForms.

Я не понимаю :
1.Где прописывать логику приложения, есть 3 файла: форма, .cpp, .h?
2.System::Void MyForm_Load(System::Object^ sender, System::EventArgs^ e{
} Что обозначают все System, Objectm, sendr ,EventArgs когда я писал консольно приложения , я использовал iostream, string ,ctime; cout , cin , if , else, switch, int, и т.п. Без system , object , send и т.п.
3. Подскажите, какая тема или что для этого нужно знать?

Показать ответ
Ответ:
chmy1998
chmy1998
18.05.2022 06:54
11111100=1*2^{7}+1*2^{6}+1*2^{5}+1*2^{4}+1*2^{3}+1*2^{2}+0+0=128+64+32+16+8+4=252
11100111=1*2^{7}+1*2^{6}+1*2^{5}+0+0+1*2^{2}+1*2^{1}+1*2^{0}=128+64+32+4+2+1=231
1111100=1*2^{6}+1*2^{5}+1*2^{4}+1*2^{3}+1*2^{2}+0+0=64+32+16+8+4=124

383 191 95 47 23 11 5 2 1
1      1    1   1   1    1  1 0 1 -> 101111111

46688 23344 1167 583 291 145 72 36 18 9 4 2 1
0         0          1      1     1      1    0   0   0   1  0 0 1 -> 101000111100

968574 484287 242143 121071  60535 30267 15133 7566 3783 1891
0           1           1            1           1          1         1        0         1       1
945 472 236 118 59 29 14 7 3 1
1     0     0      0    1   1   0   1 1 1 -> 11101100011101111110
0,0(0 оценок)
Ответ:
helpppppo
helpppppo
12.04.2022 05:37
// #includes {{{
#include <stdio.h>#include <iostream>#include <cmath>#include <algorithm>#include <fstream>#include <vector>#include <complex>#include <queue>#include <set>#include <map>#include <cstdlib>#include <cstdio>#include <cstring>#include <cassert>#include <ctime>#include <cmath>#include <string>#include <deque>#include <list>#include <math.h>#include <fstream>#include <stack>#include <iomanip>#include <bitset>#include <memory.h>#include <bitset>#include <functional>#include <numeric>#include <utility>#include <sstream>#include <ctime>#include <assert.h>#include <stdarg.h>#include <time.h>#include <limits.h>#include <ctype.h>#include <complex>#include <bits/stdc++.h>// }}} // #defines {{{#define exp 1e-10#define sc scanf#define pr printf#define mk make_pair#define pb push_back#define pf push_front#define ll long long#define fi first#define se second#define eps 0.000000001#define INF 1000000007#define file "management"#define eps 0.000000001#define cmd 1000000009#define PI 3.14159265#define MOD 1000000007#define sz(x) ((int)(x).size())#define in(s) freopen(s, "r", stdin);#define pi 3.1415926535897#define rep(i, n) for(__typeof(n) i = 0; i < (n); i++)#define out(s) freopen(s, "w", stdout);#define sync ios_base::sync_with_stdio( 0 )// }}} using namespace std; typedef long long lglg;const int inf = 1<<30, maxN = 1000;int ax[] = {0, 1, -1, 0, 0};int ay[] = {0, 0, 0, -1, 1}; int main(){    string a;    int n, dp[102][102], i, j, px[102][102], py[102][102];    cin >> a;    memset(dp, 0, sizeof(dp));    memset(px, -1, sizeof(px));    a = "." + a;    n = a.size() - 1;    for (i = 1; i <= n; i++)        dp[i][i] = 1;    for (i = n; i >= 1; i--)        for (j = i + 1; j <= n; j++)        {            if (a[i] == a[j] && dp[i][j] < 2 + dp[i + 1][j - 1])            {                dp[i][j] = 2 + dp[i + 1][j - 1];                px[i][j] = i + 1;                py[i][j] = j - 1;            }            if (dp[i][j] < dp[i + 1][j])            {                dp[i][j] = dp[i + 1][j];                px[i][j] = i + 1;                py[i][j] = j;            }            if (dp[i][j] < dp[i][j - 1])            {                dp[i][j] = dp[i][j - 1];                px[i][j] = i;                py[i][j] = j - 1;            }         }    cout << dp[1][n] <<'\n';    int x = 1, y = n, q, w;    vector<char> ans;    char z = 0;    while (px[x][y] != -1)    {        if (px[x][y] == x + 1 && py[x][y] == y - 1)            ans.push_back(a[x]);        q = px[x][y];        w = py[x][y];        x = q;        y = w;    }    if (x == y)        z = a[x];    for (i = 0; i< ans.size(); i++)        cout << ans[i];    if (z != 0)        cout<< z;    for (i = ans.size() - 1; i >= 0; i--)        cout<< ans[i];    return 0; }   
0,0(0 оценок)
Популярные вопросы: Информатика
Полный доступ
Позволит учиться лучше и быстрее. Неограниченный доступ к базе и ответам от экспертов и ai-bota Оформи подписку
logo
Начни делиться знаниями
Вход Регистрация
Что ты хочешь узнать?
Спроси ai-бота