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 Shopping | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double peturBudget = double.Parse(Console.ReadLine()); | |
int gpuAmount = 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 WorldSwimRecord | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double recordInSeconds = double.Parse(Console.ReadLine()); | |
double distanceInMeters = 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 GodzillaVS.Kong | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double movieBudget = double.Parse(Console.ReadLine()); | |
int supernumeraryAmount = 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.Reflection.Metadata.Ecma335; | |
namespace ToyShop | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double tourPrice = 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 Time_15Minutes | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int myHours = int.Parse(Console.ReadLine()); | |
int myMinutes = 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 BonusScore | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int startupNumber = 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 Sum_Seconds | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int firstTime = int.Parse(Console.ReadLine()); | |
int secondTime = 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 Area_of_Figures | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string figureType = 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 Speed_Info | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double num = 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 Nums_100_to_200 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int num = int.Parse(Console.ReadLine()); |