This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics.Tracing; | |
namespace EvenPowersOf_2 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int n = int.Parse(Console.ReadLine()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics.Tracing; | |
namespace EvenPowersOf_2 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int n = int.Parse(Console.ReadLine()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Numbers_1_N_WithStep_3 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int n = int.Parse(Console.ReadLine()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Numbers_N_1 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
for (int number = int.Parse(Console.ReadLine()); number >= 1; number--) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Numbers_N_1 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int n = int.Parse(Console.ReadLine()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Numbers_From_1_To_100 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
for (int numbers = 1; numbers <= 100; numbers++) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace SkiTrip | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int stayDays = int.Parse(Console.ReadLine()); | |
string placeType = Console.ReadLine(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace OnTimeForTheExam | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int examHour = int.Parse(Console.ReadLine()); | |
int examMinutes = int.Parse(Console.ReadLine()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
namespace HotelRoom | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string month = Console.ReadLine(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace OperationsBetweenNumbers | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double N1 = double.Parse(Console.ReadLine()); | |
double N2 = double.Parse(Console.ReadLine()); |
NewerOlder