46 of 100 menu

Rust Taskbook Level 5.6

Determine how many digits are needed to write down all the integers in the range from 1 to 100.

Write a program that will find the roots of a quadratic equation. To do this, ask the user for three numbers that will be the coefficients of the equation.

Create the following array using loops:

int[] { [1, 2, 3], [4, 5, 6], [7, 8, 9], }

Two numbers are given:

let num1: u16 = 12345; let num2: u16 = 45678;

Output to the console the numbers that are in both numbers.

Given an array with a date:

let arr = [2025, 12, 31];

Write the data from this array into a tuple as follows:

(2025, 12, 31)
enru