Code:
static void Main(string[] args)
{
string input = Console.ReadLine();
double debt = double.Parse(input);
debt = debt * 1.5;
Console.WriteLine(debt);
}
This
Code:
static void Main(string[] args)
{
double balance = double.Parse(Console.ReadLine());
balance = balance + (balance * 0.07);
Console.WriteLine(balance); // first month
balance = balance + 250.00;
balance = balance + (balance * 0.07);
Console.WriteLine(balance); // second month
}
I Get Warning Message
Does this Tut like other tutorials in all sites?
Or that Tut for Coding Conquer stuff only?
If it's like the other tutorials other sites then i have one for my language






