A
Anonymous
Наурыз 19, 2021, 1:54 Т.Қ.
A
Anonymous
Ақп. 18, 2021, 7:21 Т.Қ.

<script>
$(document).ready(function () {
    $(document).on('click', '[data-elem-id="1605859307264"] a', function (e) {
        var url = $(this).attr('href');
        e.preventDefault();
       
A
Anonymous
Ақп. 13, 2021, 7:24 Т.Қ.

string = input()
 
res = 0
for letter in string:
    res += int(letter)
 
print(res)
A
Anonymous
Ақп. 8, 2021, 11:44 Т.Қ.

from turtle import *

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

# создаём функцию, которая будет 
A
Anonymous
Ақп. 1, 2021, 8: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
Anonymous
Қаң. 30, 2021, 8: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
Anonymous
Қаң. 30, 2021, 1: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
Қаң. 28, 2021, 2:24 Т.Ж.

ListView
    {
        id: tableView

        anchors.top:  headers ? rowHeader.bottom : root.top
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.bottom: p
A
Anonymous
Қаң. 23, 2021, 7: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
Anonymous
Қаң. 16, 2021, 8: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
Anonymous
Қаң. 15, 2021, 10:11 Т.Қ.

import random


class Player:

    def __init__(self, name, money, position):
        self.name = name
        self.money = money
        self.position = position
        self.street = 0
   
A
Anonymous
Жел. 6, 2020, 12:10 Т.Ж.

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


def registration():
    # Создаём надпись и крепим в 1 строку, 1 столбец
    tk.Label(mainWindow, text='В
A
Anonymous
Қар. 27, 2020, 11:48 Т.Қ.
A
Anonymous
Қар. 26, 2020, 11:51 Т.Қ.
M
Қар. 9, 2020, 3: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
Қаз. 28, 2020, 11: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
Қаз. 23, 2020, 2: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
Қаз. 22, 2020, 11:46 Т.Қ.

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

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

        if (keyArg == key)
        {
            int 
M
Қаз. 14, 2020, 5:38 Т.Қ.

#include <iostream>
using namespace std;


int main()
{

	double x, y;
	cout << "Input x\n";
	cin >> x;
	cout << "Input y\n";
	cin >> y;
	double a = 4-2*x;
	double b = -5+2*x+y;
	double 
M
Қаз. 14, 2020, 12:13 Т.Ж.

#include <iostream>
using namespace std;


int main()
{

	double x, y, Ax = 2, Ay = -1, Bx = 2, By = 1, Cx = 3, Cy = -1;
	cout << "Input x\n";
	cin >> x;
	cout << "Input y\n";
	cin >> y;