Объяснение:
1. Пронумеруем разряды:
3-й разряд - 4;
2-й разряд - 1;
1-й разряд - 5;
0-й разряд - 3.
4153₈=4·8³+1·8²+5·8¹+3·8⁰
2. 4153₈=4·8³+1·8²+5·8¹+3·8⁰=2048+16+40+3=2155₁₀
3. 125/8=15 (5)
15/8=1 (7)
(1)
125₁₀=175₈
4. Пронумеруем разряды:
2-й разряд - A;
1-й разряд - 6;
0-й разряд - E;
A6E₁₆=(10)(6)(14)=10·16²+6·16¹+14·16⁰
5. A6E₁₆=10·16²+6·16¹+14·16⁰=2560+96+14=2670₁₀
6. 350/16=21 (14=E)
21/16=1 (5)
350₁₀=15E₁₆
7. 247/2=123 (1)
123/2=61 (1)
61/2=30 (1)
30/2=15 (0)
15/2=7 (1)
7/2=3 (1)
3/2=1 (1)
247₁₀=11110111₂
247/8=30 (7)
30/8=3 (6)
(3)
247₁₀=367₈
247/16=7 (15=F)
(7)
247₁₀=7F₁₆
Получившиеся числа между собой равны, так как имеют одинаковое число в десятичной системе счисления.
Объяснение:
1. Пронумеруем разряды:
3-й разряд - 4;
2-й разряд - 1;
1-й разряд - 5;
0-й разряд - 3.
4153₈=4·8³+1·8²+5·8¹+3·8⁰
2. 4153₈=4·8³+1·8²+5·8¹+3·8⁰=2048+16+40+3=2155₁₀
3. 125/8=15 (5)
15/8=1 (7)
(1)
125₁₀=175₈
4. Пронумеруем разряды:
2-й разряд - A;
1-й разряд - 6;
0-й разряд - E;
A6E₁₆=(10)(6)(14)=10·16²+6·16¹+14·16⁰
5. A6E₁₆=10·16²+6·16¹+14·16⁰=2560+96+14=2670₁₀
6. 350/16=21 (14=E)
21/16=1 (5)
(1)
350₁₀=15E₁₆
7. 247/2=123 (1)
123/2=61 (1)
61/2=30 (1)
30/2=15 (0)
15/2=7 (1)
7/2=3 (1)
3/2=1 (1)
(1)
247₁₀=11110111₂
247/8=30 (7)
30/8=3 (6)
(3)
247₁₀=367₈
247/16=7 (15=F)
(7)
247₁₀=7F₁₆
Получившиеся числа между собой равны, так как имеют одинаковое число в десятичной системе счисления.
Внимание! Хром жрет строки! Сейчас поправлю
Laboratorna2.cs
//////////////////////////////////////////////////
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Laboratorna2{
class Laboratorna2
{
public static void A() {
Console.WriteLine("Привет, это метод А()");
}
public static void B(int n, int m) {
Console.WriteLine(n + m);
Console.WriteLine(n - m);
Console.WriteLine(n * m);
Console.WriteLine(Convert.ToDouble(n) / m);
}
public static double C(double k, double l, double m) {
return (k + l + m) / 3;
}
public static string N11(ref int Numb) {
Numb = 11 * Numb; return "";
}
public static int Line(ref string line) {
char[] arr = line.ToCharArray();
Array.Reverse(arr);
line = new string(arr);
return line.Length;
}
static void Main(string[] args) {
Console.WriteLine("Метод А:"); A();
Console.WriteLine("Метод B:"); B(5, 7);
Console.WriteLine("Метод C: {0}", C(4.33, 13.6, -14.88439435));
Console.WriteLine("Geometry.S: {0}", Geometry.S(5));
double P, S;
Geometry.Par(5, out P, out S);
Console.WriteLine("Geometry.Par: P={0}; S={1}", P, S);
int N = 7;
Console.WriteLine("Метод N11: Число = {0}; Результат = {2}", N, N11(ref N), N);
string kekus = "Lol Kek Cheburek!";
Console.WriteLine("Метод Line: Исходная строка = \"{0}\"; Длина = {1}; Результирующая строка = \"{2}\";", kekus, Line(ref kekus), kekus);
Console.ReadKey();
}
}
}
Geometry.cs
\\\\\\\\\\\\\\\\\\\\\\\\\
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Laboratorna2 {
class Geometry {
public static double S(double R) {
return Math.PI * Math.Pow(R, 2);
}
public static void Par(double R, out double S, out double P) {
S = Math.PI * Math.Pow(R, 2);
P = 2 * Math.PI * R;
}
}
}