Multiples of 17 are : 17 34 51 68 85
This is a C# Program to print all the multiples of 17 which are less than 100.
This C# Program Prints all the Multiples of 17 which are Less than 100.
Here all the multiples of 17 are displayed.
Here is source code of the C# Program to Print all the Multiples of 17 which are Less than 100. The C# program is successfully compiled and executed with Microsoft Visual
Studio. The program output is also shown below.
/* * 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(); } }
In this C# program using for loop, compute the multiples of 17 from 1 to 100. Initialize the value of ‘i’ variable as 1 and check the condition that the value of ‘i’ variable is less than 100.
If the condition is true then execute the statement. Compute the modulus of the value of ‘i’ variable by 17. If condition statement is used to check the value of ‘a’ variable is equal to 0. If the condition is true then execute the statement and print all the multiples of 17.
Multiples of 17 are : 17 34 51 68 85