Skip to content

Instantly share code, notes, and snippets.

@QRemark
Created January 8, 2024 14:15
Show Gist options
  • Save QRemark/d45a1bc9ead854a8cb80bfbb5520c8ce to your computer and use it in GitHub Desktop.
Save QRemark/d45a1bc9ead854a8cb80bfbb5520c8ce to your computer and use it in GitHub Desktop.
Переменные
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace homeWork1
{
internal class Program
{
static void Main(string[] args)
{
byte ageBob;
short daysInYear;
int applesInBox;
long heightOfMountain;
ulong distanceToSun;
float temperature;
double oceanVolume;
char favoriteLetter;
string codePhrase;
bool accessIsAllowed;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment