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 Password_Guess | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string password = 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 EvenOrOdd | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int number = 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 GreaterNumber | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int num1 = int.Parse(Console.ReadLine()); | |
int num2 = 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 Excellent_Result | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double evaluation = double.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 FishTank | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int length = int.Parse(Console.ReadLine()); | |
int width = 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 BasketballEquipment | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int basketballYearSub = 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 FoodDelivery | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int chickenMenuAmount = int.Parse(Console.ReadLine()); | |
int fishMenuAmount = 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.Xml.Schema; | |
namespace Repainting | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int neededAmountNylon = 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 SuppliesForSchool | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int penPacketNum = int.Parse(Console.ReadLine()); | |
int markerPacketNum = 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 VacationBooksList | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int pageNum = int.Parse(Console.ReadLine()); | |
int page = int.Parse(Console.ReadLine()); |