From 09dd575c2ab1e314e0d5ee6273cd8e329a0382c8 Mon Sep 17 00:00:00 2001 From: Alka Trivedi Date: Wed, 10 Jun 2020 20:52:38 +0530 Subject: [PATCH] Test to check divisibility by 25 --- cpp/Test For 25.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cpp/Test For 25.cpp diff --git a/cpp/Test For 25.cpp b/cpp/Test For 25.cpp new file mode 100644 index 0000000..3fda657 --- /dev/null +++ b/cpp/Test For 25.cpp @@ -0,0 +1,12 @@ +#include +using namespace std; +int main() +{ + int num; + cin>>num; + if(num%25==0) + cout<<"Number is divisible by 25"<