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

1т 5ц 76кг + 3т 6ц 59кг
Сколько будет

Ответы

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

Ответ:

5т 2ц 35кг

Пошаговое объяснение:

перевела кг в ц, а ц в т

Автор ответа: frogtim21
0

Ответ:

5235 кг

Пошаговое объяснение:

Похожие вопросы
Предмет: Информатика, автор: 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);
}
}

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