Предмет: Математика, автор: milenayun

Радиус земного шара примерно равен 6400 км.
Вычислите приближённое значение длины экватора.
С решением пожалуйста!

Ответы

Автор ответа: Arabskayaaanooooooch
1

респект на хенджина в аватарке

Похожие вопросы
Предмет: Информатика, автор: maxkipeniak
package com.example.newgenommod;

import net.minecraft.block.BlockState;
import net.minecraft.block.CropsBlock;
import net.minecraft.item.ItemStack;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.BlockRayTraceResult;
import net.minecraft.world.World;

public class GenomCropBlock extends CropsBlock {

public GenomCropBlock(Properties builder) {
super(builder);
}

@Override
public void onBlockActivated(BlockState state, World worldIn, BlockPos pos, net.minecraft.entity.player.PlayerEntity player, net.minecraft.util.Hand handIn, BlockRayTraceResult hit) {
if (!worldIn.isRemote) {
ItemStack heldItem = player.getHeldItem(handIn);
if (heldItem.isEmpty()) {
// When right-clicked with an empty hand, display the genome
String genome = getGenome(state);
player.sendMessage(new StringTextComponent("Genome: " + genome));
}
}
}

// Custom method to get the genome from the block state
private String getGenome(BlockState state) {
// You'll need to implement your own logic to determine the genome based on the block state
// For demonstration purposes, I'll return a static genome string
return "xyxxzoy";
}

// Custom method to handle the growth and yield based on the genome
@Override
protected int getBonemealAgeIncrease(World worldIn) {
// You'll need to implement your own logic to calculate the bonemeal age increase
// based on the genome. For demonstration purposes, I'll return a static value.
return 1;
}

// Custom method to handle the yield based on the genome
@Override
public ItemStack getItem(IBlockReader worldIn, BlockPos pos, BlockState state) {
// You'll need to implement your own logic to calculate the yield based on the genome
// For demonstration purposes, I'll return a static item stack.
return new ItemStack(Items.WHEAT);
}
}

Як створити з цього коду майнкрафт мод (поясніть нормально не туда сюда і готово)
Предмет: Алгебра, автор: dastanovazhanel