[C#] Домашно Loops – 4 задача
Write a program that calculates N!/K! for given N and K (1<K<N). Hint: use BigInteger!
View Article[C#] Домашно Loops – 5 задача
Write a program that calculates N!*K! / (K-N)! for given N and K (1<N<K).
View Article[C#] Домашно Loops – 7 задача
Write a program that reads a number N and calculates the sum of the first N members of the sequence of Fibonacci: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, …
View Article[C#] Домашно Loops – 8 задача
Write a program that calculates the greatest common divisor (GCD) of given two numbers. Use the Euclidean algorithm (find it in Internet).
View Article[C#] Вариант 1 – We All Love Bits
Problem 4 – We All Love Bits Знам, че това не е най-правилното решение, но това ми дойде изведнъж, вмомента обмислям как да се реши с побитови оператори.
View Article[C#] Домашно Loops – 11 задача
Write a program that prints all possible cards from a standard deck of 52 cards (without jokers). The cards should be printed with their English names. Use nested for loops and switch-case.
View Article[C#] Домашно Loops – 12 задача
Write a program that reads from the console a positive integer number N (N < 20) and outputs a matrix like the following: N = 3 ——— 1 2 3 2 3 4 3 4 5 N = 4 ——— 1 2 3 4 2 3 4 5 3 4 5 6 4 5 6 7
View Article[C#] Домашно Loops – 13 задача
* Write a program that calculates for given N how many trailing zeros present at the end of the number N!. Examples: N = 10 -> N! = 3628800 -> 2 N = 20 -> N! = 2432902008176640000 -> 4 Does...
View Article