Advertisement

Write a program to check whether a number is divisible by 97 or not


  •  
    Write a program to check whether a number is divisible by 97 or not
    // Write a program to check whether a number is divisible by 97 or not
    #include<stdio.h>

    int main()
    {
        int num;
        printf("enter a number for check\n");   //print the line to console
        scanf("%d",&num);         // take input from user
        if(num%97 == 0){       // % operator return remainder 
            printf("it is divisible by 97");     // this line is print when output is 0
        }
        else
        printf("it is not divisible by 97");

        return 0;
    }

Output

enter a number for check
878
it is not divisible by 97

                                                                                                                                                                  

enter a number for check
194
it is divisible by 97

                                                                                                                                                                 

Our youtube channel link :    https://www.youtube.com/channel/UCvEI4tHm59GRCIsoKq57DOA

Our facebook  page  link :  https://www.facebook.com/harryscode87

Our instagram page link : https://www.instagram.com/harrys_code/

Post a Comment

0 Comments