C# Program to Print All the Multiples of 17 which are Less than 100

This is a C# Program to print all the multiples of 17 which are less than 100.

Problem Description

This C# Program Prints all the Multiples of 17 which are Less than 100.

Problem Solution

Here all the multiples of 17 are displayed.

Program/Source Code

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();
    }
}
Program Explanation

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.

advertisement

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.

Runtime Test Cases
 
Multiples of 17 are :
17
34
51
68
85

Sanfoundry Global Education & Learning Series – 1000 C# Programs.

Free 30-Day Java Certification Bootcamp is Live. Join Now!
If you wish to look at all C# Programming examples, go to 1000 C# Programs.

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
I’m Manish - Founder and CTO at Sanfoundry. I’ve been working in tech for over 25 years, with deep focus on Linux kernel, SAN technologies, Advanced C, Full Stack and Scalable website designs.

You can connect with me on LinkedIn, watch my Youtube Masterclasses, or join my Telegram tech discussions.

If you’re in your 40s–60s and exploring new directions in your career, I also offer mentoring. Learn more here.