You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
524 B
C#

/*
* C# Program to Print all the Multiples of 17 which are Less than 100
*/
using System;
class program
{
public static void Main()
{
int a,i;
Console.WriteLine("Multiples of 17 are : ");
for (i = 1; i < 100; i++)
{
a = i % 17;
if (a == 0)
{
Console.WriteLine(i);
}
}
Console.Read();
}
}
/*
Multiples of 17 are :
17
34
51
68
85