using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication21
{
class Program
{
static void Main(string[] args)
{
double v;
double r;
double i;
double y = 0;
int m=0;
while (y < 6)
{
y++;
Console.WriteLine("plz enter the voltage");
v = double.Parse(Console.ReadLine());
Console.WriteLine("plz enter the resgitar");
r = double.Parse(Console.ReadLine());
i = v / r;
if (i > 2)
{
m++;
}
}
Console.WriteLine("number of times" +m);
Console.ReadKey();
}
}
}