Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Seizoen bepalen in C#
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { String seizoen; DateTime datum; int jaar; int maand; int dag; Console.WriteLine("Voer de datum in: "); datum = Convert.ToDateTime(Console.ReadLine()); jaar = datum.Year; maand = datum.Month; dag = datum.Day; if(maand > 4 && maand < 5 ||(maand == 3 && dag >= 21) ||( maand == 6 && dag <21) ) { seizoen = "Lente"; } else if(maand > 6 && maand < 9 || (maand == 6 && dag >= 21) || (maand == 9 && dag <21)) { seizoen = "zomer"; } else if(maand >9 && maand < 12 || (maand ==9 && dag >= 21) || (maand == 12 && dag < 21)) { seizoen = "winter"; } else if((maand > 12 && maand <3) || (maand == 12 && dag >= 21) || (maand == 3 && dag <21)) { seizoen = "herfst"; } else { seizoen = "gelieve de datum te herbekijken"; } Console.WriteLine("Het seizoen is: " + seizoen); Console.ReadLine(); } } }
run
|
edit
|
history
|
help
0
ö2
c# problem
MyProfile_MEDALLA.java
фабрика статик
C# .ToInt() Extension Method Example
Code which will convert Word into its Binary Format
Switch
Vignere Cipher
Fórum GroupBy ➡ Sum & Aggregate customers' names
n th to last element