Skip to content

Instantly share code, notes, and snippets.

@QRemark
Created January 8, 2024 13:45
Show Gist options
  • Save QRemark/a3e5f0b3b59b202fe46cb74d0e4978d9 to your computer and use it in GitHub Desktop.
Save QRemark/a3e5f0b3b59b202fe46cb74d0e4978d9 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)
{
int myAge;
int yourAge;
float myHeightInMeters;
float yourHeightInMeters;
char myFavoriteLetter;
char yourFavoriteLetter;
string myCodePhrase, yourCodePhrase;
bool iSayYes, youSayNo;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment