using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication29
{
class Program
{
static void Main(string[] args)
{
Console.Write("Lütfen Sayı Sınırınızı Giriniz : ");
int sayi = int.Parse(Console.ReadLine());
int tektoplam = 0;
int cifttoplam = 0;
for(int dongu = 0; dongu <=sayi ; dongu++)
{
if (dongu % 2 == 0)
cifttoplam = cifttoplam + dongu;
else
tektoplam = tektoplam + dongu;
}
Console.WriteLine(sayi + " sayısına kadar olan çift sayıların toplamı : " + cifttoplam);
Console.WriteLine(sayi + " sayısına kadar olan tek sayıların toplamı : " + tektoplam);
Console.ReadKey();
}
}
}
SEARCH
SON PAYLAŞIMLAR
3-latest-65px
ETİKETLER
- 5. Sınıf 1. Dönem (8)
- 5. Sınıf BTY (8)
- 6. Sınıf BTY (1)
- Kişisel (3)
- Lise (9)
- Scratch (11)
- Üniversite - C# (39)
Hiç yorum yok:
Yorum Gönder