using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int b = 0;
Console.WriteLine("5 ile Tam Bölünen Sayılar:");
for (int a = 1; a <= 1000; a++)
{
if (a % 5 == 0)
{
Console.Write(a+",");
}
}
Console.ReadKey();
}
}
}
-------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Console.Write("Bir Sayı Giriniz:");
int sayı = Convert.ToInt32(Console.ReadLine());
int b = 0;
int c = 0;
for (int a =sayı; a >0 ; a--)
{
if (a % 5 == 0)
{
b += a;
c++;
}
}
Console.WriteLine("5 ile Bölünen Sayıların Toplamı:" + b);
Console.Write("5 ile Bölünen Sayıların Adedi:"+c);
Console.ReadKey();
}
}
}