w3resource

C Exercises: Divide all numbers between 1 and 100 and find all those numbers where remainder value is 3


Print numbers (1–100) leaving a remainder of 3 when divided by input

Write a C program that accepts an integer from the user and divides all numbers between 1 and 100. Print those numbers where the remainder value is 3.

Sample Solution:

C Code:

#include <stdio.h>

int main () {
    // Declare variables
    int x, i, y;

    // Prompt user for input
    printf("Input a number (integer):\n");

    // Read an integer from user and store it in 'x'
    scanf("%d", &x);

    // Print a message about the remainder condition
    printf("\nRemainder value is 3 after divide all numbers between 1 and 100 by %d:\n", x);

    // Loop to check for remainder condition
    for (i = 1; i <= 100; i++){
        if (i % x == 3){
            printf("%d\n", i);
        }
    }

    return 0; // End of program
}

Sample Output:

Input a number (integer):
65

Remainder value is 3 after divide all numbers between 1 and 100 by 65:
3
68

Flowchart:

C Programming Flowchart: Divide all numbers between 1 and 100 and find all those numbers where remainder value is 3.

For more Practice: Solve these Related Problems:

  • Write a C program to iterate numbers 1 to 100 and print those that yield a remainder of 3 when divided by a user-supplied divisor.
  • Write a C program to compute and display numbers in the range 1–100 that satisfy a given modulus condition using loops.
  • Write a C program to filter and print numbers based on the remainder condition using a function that accepts the divisor.
  • Write a C program to print numbers meeting the modulus condition, using pointer traversal through a pre-defined array of numbers.

C programming Code Editor:



Previous: Write a C program to find the odd, even, positive and negative number form a given number(integer) and print a message 'Number is positive odd' or 'Number is negative odd' or 'Number is positive even' or 'Number is negative even'. If the number is 0 print “Zero”.
Next: Write a C program that reads seven integer values from the user and find the highest value and it’s position.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.