Другое С/С++ Вопрос - Ответ

AdCKuY_DpO4uLa

Адский дрочер
Друг
317
673
Как указать модификатор глобального поиска "g"?

C++:
boost::regex regular("([\\d+\\s+])");
 

MrEnderStail

Новичок
19
0
нужна помощь с кодом ( ниже ).
Задание :11 знаков после десятичной точки. Но я не пойму как получить 11 знаков после точки.

И если кто то знает скиньте руководство по типом данных( float double и тд. И как их использовать , комбинировать и тд)
дада:
#include <stdio.h>
#include <math.h>
#include <locale.h>

int m;
int Z;
int X;
int B;
int C;
float V;
; int main(void)
{
    setlocale(LC_CTYPE, "rus");
        printf("Введите m: ");
        scanf_s("%d", &m);
            B = pow(3 * m, 2);
            X = sqrt((B+4) - (24 * m));
            C = 3 * sqrt(m) - 2 / sqrt(m);
            V = X / C;
        printf("%d\n" ,X);
        printf("%d\n", C);
        printf("%f\n", V);
    return 0;
}
 

AdCKuY_DpO4uLa

Адский дрочер
Друг
317
673
нужна помощь с кодом ( ниже ).
Задание :11 знаков после десятичной точки. Но я не пойму как получить 11 знаков после точки.

И если кто то знает скиньте руководство по типом данных( float double и тд. И как их использовать , комбинировать и тд)
дада:
#include <stdio.h>
#include <math.h>
#include <locale.h>

int m;
int Z;
int X;
int B;
int C;
float V;
; int main(void)
{
    setlocale(LC_CTYPE, "rus");
        printf("Введите m: ");
        scanf_s("%d", &m);
            B = pow(3 * m, 2);
            X = sqrt((B+4) - (24 * m));
            C = 3 * sqrt(m) - 2 / sqrt(m);
            V = X / C;
        printf("%d\n" ,X);
        printf("%d\n", C);
        printf("%f\n", V);
    return 0;
}
C:
#include <stdio.h>
#include <math.h>

int main()
{
    double m, Z, X, B, C, V;
    
    printf("Введите m: ");
    scanf("%lf", &m);
    
    B = pow(3 * m, 2);
    X = sqrt((B + 4) - (24 * m));
    C = 3 * sqrt(m) - 2 / sqrt(m);
    V = X / C;
    
    printf("%0.11lf\n%0.11lf\n%0.11lf", X, C, V);
    
    return 0;
}
 

Dark_Knight

Me, me and me.
Друг
4,081
2,099
Ты про это?
1633206472552.png
 

DANIIL XPC

Известный
81
5
How can i remake this in c++ sf?
C++:
    sampRegisterChatCommand('kr', k1d)



function k1d(params)
    if params ~= nil then
        lua_thread.create(function()
                sampSendChat("text")
                wait(2000)
                sampSendChat("text2")
    end)
    end
end
 

legendabrn

Известный
Проверенный
120
170
How can i remake this in c++ sf?
C++:
    sampRegisterChatCommand('kr', k1d)



function k1d(params)
    if params ~= nil then
        lua_thread.create(function()
                sampSendChat("text")
                wait(2000)
                sampSendChat("text2")
    end)
    end
end
C++:
#define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS

#include <assert.h>
#include <thread>

#include "SAMPFUNCS_API.h"
#include "game_api\game_api.h"

SAMPFUNCS *SF = new SAMPFUNCS();

void CALLBACK k1d(std::string params)
{
    std::thread test([]()
    {
        SF->getSAMP()->getChat()->AddChatMessage(D3DCOLOR_XRGB(0, 0xAA, 0), "text");
        std::this_thread::sleep_for(std::chrono::milliseconds(2000));
        SF->getSAMP()->getChat()->AddChatMessage(D3DCOLOR_XRGB(0, 0xAA, 0), "text2");
    });
    test.detach();
}

void CALLBACK mainloop()
{
    static bool init = false;
    if (!init)
    {
        if (GAME == nullptr && GAME->GetSystemState() != eSystemState::GS_PLAYING_GAME && !SF->getSAMP()->IsInitialized()) return;
        SF->getSAMP()->registerChatCommand("kr", k1d);
        init = true;
    }
}

BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwReasonForCall, LPVOID lpReserved)
{
    if(dwReasonForCall == DLL_PROCESS_ATTACH) SF->initPlugin(mainloop, hModule);
    return TRUE;
}
 
  • Злость
Реакции: Dark_Knight

kin4stat

mq-team · kin4@naebalovo.team
Всефорумный модератор
2,744
4,809
C++:
#define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS

#include <assert.h>
#include <thread>

#include "SAMPFUNCS_API.h"
#include "game_api\game_api.h"

SAMPFUNCS *SF = new SAMPFUNCS();

void CALLBACK k1d(std::string params)
{
    std::thread test([]()
    {
        SF->getSAMP()->getChat()->AddChatMessage(D3DCOLOR_XRGB(0, 0xAA, 0), "text");
        std::this_thread::sleep_for(std::chrono::milliseconds(2000));
        SF->getSAMP()->getChat()->AddChatMessage(D3DCOLOR_XRGB(0, 0xAA, 0), "text2");
    });
    test.detach();
}

void CALLBACK mainloop()
{
    static bool init = false;
    if (!init)
    {
        if (GAME == nullptr && GAME->GetSystemState() != eSystemState::GS_PLAYING_GAME && !SF->getSAMP()->IsInitialized()) return;
        SF->getSAMP()->registerChatCommand("kr", k1d);
        init = true;
    }
}

BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwReasonForCall, LPVOID lpReserved)
{
    if(dwReasonForCall == DLL_PROCESS_ATTACH) SF->initPlugin(mainloop, hModule);
    return TRUE;
}
Ага, здарова UB