Users Online

· Guests Online: 60

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

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

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.

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

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 0.69 seconds
10,854,998 unique visits