using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication7
{
class Program
{
static void Main(string[] args)
{
double rsistor;
double volt, I;
int a=0;
int d=0;
while (a++ < 6){
Console.WriteLine("plz enter the value rsistor");
rsistor = double.Parse(Console.ReadLine());
Console.WriteLine("plz enter the value volt");
volt = double.Parse(Console.ReadLine());
I = volt / rsistor;
if (I >= 2) {
d++;
}
}
Console.WriteLine("the digital of times I>=2 is" + d);
Console.ReadKey();
}
}
}
ليست هناك تعليقات:
إرسال تعليق