I am an IT student. During my studies, I immersed in many areas of IT and learned about their features. The most attractive and interesting for me was front-end development. I want to develop further in this area and learn how to create user-friendly modern websites.
int months, percent;
float deposit, income;
Console.WriteLine("Please, enter the deposit amount: ");
deposit = Console.ReadLine();
Console.WriteLine("Enter the number of months: ");
months = Console.ReadLine();
Console.WriteLine("Enter the annual interest rate: ");
percent= Console.ReadLine();
income = deposit * percent/100 * months/12;
Console.WriteLine("Profit: " + income + ", total payout amount: " + deposit + income + "\n";
Siberian Federal University
faculty of Applied Informatics
(2019-2023)
Krasnoyarsk, Russia