18 lines
377 B
C#
18 lines
377 B
C#
using System;
|
|
|
|
class DataTypes {
|
|
public static void Main() {
|
|
short litet = 5325;
|
|
int medel = 75475;
|
|
long stort = 5432432;
|
|
float pi = 3.14159f;
|
|
bool gubbe = true;
|
|
|
|
Console.WriteLine("Litet: " + litet);
|
|
Console.WriteLine("Medel: " + medel);
|
|
Console.WriteLine("Stort: " + stort);
|
|
Console.WriteLine("Pi: " + pi);
|
|
Console.WriteLine("Gubbe: " + gubbe);
|
|
}
|
|
}
|