АЧ
Александр Чепрасов19 марта 2021 г. 4:25

<script>
    $(document).ready(function () {
        
        window.successSubmitPopup = function ($form) {
            var directionId = 93;
            
           var dataForm = {};
       
АЧ
Александр Чепрасов19 марта 2021 г. 4:21

<script>
  // Всего шагов
  const countSteps = 19;

  //Скрываем лишние шаги
  for (let i = 0; i <= countSteps; i++) {
    $('.t678 .t-input-group:eq('+(i+1)+')').css('display', 'none');
  }

A
Anonymous19 марта 2021 г. 3:54
A
Anonymous18 февраля 2021 г. 8:21

<script>
$(document).ready(function () {
    $(document).on('click', '[data-elem-id="1605859307264"] a', function (e) {
        var url = $(this).attr('href');
        e.preventDefault();
       
A
Anonymous13 февраля 2021 г. 8:24

string = input()
 
res = 0
for letter in string:
    res += int(letter)
 
print(res)
A
Anonymous8 февраля 2021 г. 12:44

from turtle import *

# Создаём переменные, которые будут хранить цвета
# и менять их в зависимости от времени суток
car_color = "green"
star_color = "yellow"

# создаём функцию, которая будет 
A
Anonymous1 февраля 2021 г. 9:11

&lt;?php

class Stack
{
	const LIMIT = 100;
	
	private array $stack;

	public function __construct()
	{
		$this-&gt;stack = [];
	}
	
	public function addElem(int $elem): void
	{
		if (c
A
Anonymous30 января 2021 г. 9:29

import pygame
from game.tilemap import *


class Block(pygame.sprite.Sprite):
    def __init__(self, image, x, y):
        pygame.sprite.Sprite.__init__(self)
        self.image = pygame.image.
A
Anonymous30 января 2021 г. 2:41

#include <cmath>
#include <cstdio>
#include <fstream>
#include <iomanip>
#include <iostream>

using namespace std;

int main() {
  int a, b, c, d;
  cin >> a >> b >> c >> d;
  int a1 = a * 
BlinCT
BlinCT27 января 2021 г. 15:24

ListView
    {
        id: tableView

        anchors.top:  headers ? rowHeader.bottom : root.top
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.bottom: p
A
Anonymous23 января 2021 г. 8:35

import pygame
import time
import os

pygame.init()

clock = pygame.time.Clock()
autog = 0
coins = 0
display_width = 850
display_height = 600

white = (255, 255, 255)
black = (0, 0, 0)
gr
A
Anonymous16 января 2021 г. 9:39

import pygame


class Street(pygame.sprite.Sprite):

    def __init__(self, color, x, y):
        pygame.sprite.Sprite.__init__(self)
        self.image = pygame.Surface((BLOCK_SIZE, BLOCK_SIZE
A
Anonymous15 января 2021 г. 11:11

import random


class Player:

    def __init__(self, name, money, position):
        self.name = name
        self.money = money
        self.position = position
        self.street = 0
   
A
Anonymous5 декабря 2020 г. 13:10

import socket
import threading
import tkinter as tk
from tkinter import scrolledtext


def registration():
    # Создаём надпись и крепим в 1 строку, 1 столбец
    tk.Label(mainWindow, text='В
A
Anonymous27 ноября 2020 г. 12:48
A
Anonymous26 ноября 2020 г. 12:51
M
Materimely8 ноября 2020 г. 16:58

#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;

double function(double u,double t){
	if (u > 1)return u + t;
	if (0 <= u <= 1)return u - t;
	if (u < 0)return t - 
M
Materimely28 октября 2020 г. 13:22

#include <iostream>
#include <cmath>
#include<iomanip>
using namespace std;
void func1()
{
	int height, masa, w;
	cout << "Введiть ваш зрiст:";
	cin >> height;
	cout << "Вкажiть вашу стать(0-
M
Materimely23 октября 2020 г. 4:06

using namespace std;
bool prime(long int i)
{
	for (long int x = 2; x <= sqrt(i); x++)
	{
		if (i%x == 0)return false;
	}
		return true;
	
}
int main()
{
do {
		setlocale(LC_ALL, "ukr");
BlinCT
BlinCT22 октября 2020 г. 13:46

int main(int argc, char** argv)
{
    int line = 0;

    if (argc > 1)
    {
        char* key = "-d";
        char* keyArg = argv[1];

        if (keyArg == key)
        {
            int 
OI
  • Ora Iro
  • 24 декабря 2024 г. 17:38

C++ - Тест 001. Первая программа и типы данных

  • Результат:40баллов,
  • Очки рейтинга-8
AD

C++ - Тест 004. Указатели, Массивы и Циклы

  • Результат:50баллов,
  • Очки рейтинга-4
m
  • molni99
  • 26 октября 2024 г. 11:37

C++ - Тест 004. Указатели, Массивы и Циклы

  • Результат:80баллов,
  • Очки рейтинга4
Последние комментарии
ИМ
Игорь Максимов22 ноября 2024 г. 22:51
Django - Урок 017. Кастомизированная страница авторизации на Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Evgenii Legotckoi
Evgenii Legotckoi1 ноября 2024 г. 0:37
Django - Урок 064. Как написать расширение для Python Markdown Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZE19 октября 2024 г. 18:19
Читалка fb3-файлов на Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь Максимов5 октября 2024 г. 17:51
Django - Урок 064. Как написать расширение для Python Markdown Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas55 июля 2024 г. 21:02
QML - Урок 016. База данных SQLite и работа с ней в QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Сейчас обсуждают на форуме
Donald Randolph
Donald Randolph30 декабря 2024 г. 13:59
Personal Injury lawyer Santa Monica As an experienced Santa Monica personal injury lawyer, Donald C. Randolph has recovered over $100 Million in verdicts and settlements for our clients. In severe injury cases, this compensation i…
Nirvana Yoga School
Nirvana Yoga School30 декабря 2024 г. 16:13
OAuth2.0 через VK, получение email Nirvana Yoga School is one of the most trusted and reputed traditional Rishikesh yoga courses , India certified by Yoga Alliance, USA. We aim to spread traditional yoga teachings so t…
s
sripark30 декабря 2024 г. 15:47
Mobile app development company in Chennai A Mobile app development company in Chennai focuses on creating personalized mobile applications to meet various business requirements. These companies offer a full range of services,…
a
amit8830 декабря 2024 г. 15:45
Excel in Exams with PSLE Maths Tuition Singapore Preparing for the PSLE can be challenging, but the right guidance makes all the difference. PSLE Maths tuition Singapore offers personalized coaching to help students master key concepts, improv…
a
awinash6230 декабря 2024 г. 15:23
Unlock Your Potential with the Certified Public Accountant Credential" Becoming a Certified Public Accountant (CPA) is a career milestone that opens doors to unparalleled opportunities in the world of accounting and finance. This globally recognized qualification s…

Следите за нами в социальных сетях