Program to cheque Divisibility of a number by any number

Program to cheque Divisibility of a number by any number

#include<stdio.h>
int main()
{
    int x,y;
    printf("Enter the Divisible number\n");
    scanf("%d",&x);
    printf("Enter the number\n");
    scanf("%d",&y);
    if(x%y==0)
    {
        printf("Enter number %d is divisible by %d",x,y);
    }
    else
      {
        printf("Enter number %d is not divisble by %d",x,y);
    }
 
}

OUTPUT
Enter the Divisible number
9
Enter the number
7
Enter number 9 is not divisible by 7

Visit Homepage

Comments

Popular posts

Creative pattern of butterfly in C-language

Program to show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

Program to print the cube of a number in c-language

Simple Hello world program in c- language