Computer Science, asked by mahi3657, 1 year ago

write flow chart program multiple of 4 number

Answers

Answered by naikbhavesh1425
0

#! /usr/bin/env ruby

n = gets.to_i

d = 'is not'

d = 'is' if n % 7 == 0

puts 'Your number ' + d + ' divisible by seven.'


Similar questions