Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace _2._1
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Введите первое число = ");
- double a = double.Parse(Console.ReadLine());
- Console.Write("Введите второе число = ");
- double b = double.Parse(Console.ReadLine());
- Console.Write("Среднее арифметическое кубов данных чисел = " + (Math.Pow(a, 3) + Math.Pow(b, 3)) / 2);
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement