Tech Module Exercise 2.Division Problem
Решавам втората задача от домашното ,но искарвам 80/100 .Мъчих се да усмисля къде ми е грешката,но не я виждам.Моля,помогнете!
Кодът ми---
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _2.Division
{
class Program
{
static void Main(string[] args)
{
int n = int.Parse(Console.ReadLine());
if (n % 10 == 0)
{
Console.WriteLine("The number is divisible by 10");
}
else if (n % 7 == 0)
{
Console.WriteLine("The number is divisible by 7");
}
else if (n % 2 == 0 && n % 3 == 0)
{
Console.WriteLine("The number is divisible by 6");
}
else if (n %2==0)
{
Console.WriteLine("The number is divisible by 2");
}
else if (n%3==0)
{
Console.WriteLine("The number is divisible by 3");
}
else
{
Console.WriteLine("Not divisible");
}
}
}
}
Благодаря ви!