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 prac_3_ex_1
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Введите A: ");
- int a = int.Parse(Console.ReadLine());
- Console.Write("Введите B: ");
- int b = int.Parse(Console.ReadLine());
- for (int i = b; i >= a; i--)
- if (i % 2 != 0) Console.Write("{0} ", Math.Pow(i, 3));
- Console.ReadKey();
- }
- }
- }
Add Comment
Please, Sign In to add comment