Данный отчёт сгенерирован 04.04.2023 06:21:13 UTC.
HTML версия (этот сайт) сгенерирован 04.04.2023 06:21:31 UTC.
Коммит: [bfeb65b9] add automatic zip creation
04.04.2023 06:21:13
Задача: Клас із Властивостями 04.04.2023 06:21:13
Описание: Оголосити клас Book з відкритими рядковими властивостями: Title (назва), Author (автор) та Year (рік видання). 04.04.2023 06:21:13
Решений: 54 04.04.2023 06:21:13
Клас із Властивостями 04.04.2023 06:21:13
 public class Book
{
   private int title;
   private int author;
   private int year;
   
   public int Title{
       get{ return title; }
       set{ title = value; }
   }
   public int Author{
       get{ return author; }
       set{ author = value; }
   }
   public int Year{
       get{ return year; }
       set{ year = value; }
   }
}
 public class Book
{
    public string Title { get; set; }
    public string Author { get; set; }
    public string Year { get; set; }
}
 public class Book
{
    public string Title {get; set;}
    public string Author {get; set;}
    public string Year {get; set;}
}
 public class Book
{
    private string title;
    private string author;
    private int year;

    public string Title 
    {
        get { return title; }
        set { title = value; } 
    }

    public string Author 
    {
        get { return author; }
        set { author = value; }
    }
    
    public int Year 
    {
        get { return year; }
        set { year = value; }
    }
}
 public class Book
{
    public string Title{get; set;}
    public string Author{get; set;}
    public string Year{get; set;}
}
 public class Book {
  public string Title { set; get; }
  public string Author { set; get; }
  public int Year { set; get; }
}
 public class Book
{
    public string Title {get; set;}
    public string Author {get; set;}
    public string Year {get; set;}
}
 public class Book
{
 public string Title {get; set;} 
    public string Author{get; set;} 
    public int Year {get; set;} 
}
 public class Book
{
    public string Title{ get; set; }
    public string Author { get; set; }
    public string Year { get; set; }
}
 public class Book
{
    public string Title { get; set; }
    public string Author { get; set; }
    public string Year { get; set; }
}
 public class Book
{
    public string Title { get; set; }
    public string Author { get; set; }
    public string Year { get; set; }
}
 public class Book
    {
        private string title;
        private string author;
        private int year;
        
        public string Title { get; set;}
        public string Author { get; set; }
        public int Year { get; set; }
    }
 public class Book{
    public string Title {get;set;}
    public string Author {get;set;}
    public string Year {get;set;}
}
 public class Book
{
    private string title;
    private string author;
    private string year;
    
    public string Title {
        get{return title;}
        set{title = value;}
    }
    
    public string Author {
        get{return author;}
        set{author = value;}
    }
    
    public string Year {
        get{return year;}
        set{year = value;}
    }
}
 public class Book
{
    public string Title {get; set;}
    public string Author {get; set;}
    public string Year {get; set;}
}
 public class Book
{
    private int title;
    private int author;
    private int year;
    
        public int Title {
        get { return title; }
        set { title = value; }
    }
    
            public int Author {
        get { return author; }
        set { author = value; }
    }
    
            public int Year {
        get { return year; }
        set { year = value; }
    }
}
 public class Book
{
    public string Title {set; get;}
   
    public string Author {set; get;}
    
    public int Year {set; get;}
}
 public class Book
{
    private string title, author, year;
    public string Title{
        get{return title;}
        set{title = value;}  
    }
    public string Author{
        get{return author;}
        set{author = value;}  
    }
    public string Year{
        get{return year;}
        set{year = value;}  
    }
}
 public class Book
{
    private int title;
    private int autor;
    private int year;
    
    public int Title
    {
        get { return title; }
        set { title = value; }
    }
    public int Author
    {
        get { return autor; }
        set { autor = value; }
    }
    public int Year
    {
        get { return year; }
        set { year = value; }
    }
}
 public class Book
{
    public string Title { get; set; }
    public string Author { get; set; }
    public int Year { get; set; }
}
 public class Book
{
    public string Title {get; set; }
    public string Author {get; set; }
    public string Year {get; set; }
}
 public class Book
{
  private int title;
  private int author;
  private int year;
  
  public int Title
  {
      get {return title;}
      set {title = value;}
  }
  public int Author
  {
      get {return author;}
      set {author = value;}
  }
  public int Year
  {
      get {return year;}
      set {year = value;}
  }
}
 public class Book {
    public string Title { get; set; }
    public string Author { get; set; }
    public string Year { get; set; }
}
 public class Book
{
    public string Title { get; set; }
    public string Author { get; set; }
    public string Year { get; set; }
}
 public class Book
{
String title;
String author;
String year;

public String Title{
    get{return title;}
    set{title = value;}
}

public String Author{
    get{return author;}
    set{author = value;}
}

public String Year{
    get{return year;}
    set{year = value;}
}
}
 public class Book
{
        public string Title {get;set;}
        public string Author {get;set;}
        public string Year {get;set;}
}
 public class Book
{
    private string title;
    private string author;
    private string year;
    
    public string Title{
        get {return title;}
        set {title = value;}
    }
    public string Author{
        get {return author;}
        set {author = value;}
    }
    public string Year{
        get {return year;}
        set {year = value;}
    }

}
 public class Book
{
public string Title

  get;
  set; 
}
public string Author
{   get;
    set; 
}
public string Year
{   get; 
    set; 
}
}
 public class Book
{
    public string Title{ get; set;}
     public string Author{ get; set;}
     public string Year{ get; set;}
     
}
 public class Book
{
    private string title; 
    private string author; 
    private string year;
    
        public string Title{
        get{return title;}
        set{title = value;}
    }
    
    public string Author{
        get{return author;}
        set{author = value;}
    }
    
        public string Year{
        get{return year;}
        set{year = value;}
    }

}
 public class Book
{
    public string Title{get; set;}
    public string Author{get; set;}
    public int Year{get; set;}
}
 public class Book
{
    public string Title {set;get;}
    public string Author {set;get;}
    public string Year   {set;get;}
    
    
}
 public class Book
{
    public string Title {
        get { return Title; }
        set { Title = value; }
    }
    public string Author {
        get { return Author; }
        set { Author = value; }
    }
    public string Year {
        get { return Year; }
        set { Year = value; }
    }
}
 public class Book
{
    private string title, author, year;
    
    public string Title{
        get {return title;}
        set {title = value;}
    }
    public string Author{
        get {return author;}
        set {author = value;}
    }
    public string Year{
        get {return year;}
        set {year = value;}
    }
}
 public class Book
{
    private int title;
    private int author;
    private int year;
    public int Title 
    {
        get { return title; }
        set { title = value; }
    }
    public int Author 
    {
        get { return author; }
        set { author = value; }
    }
    public int Year 
    {
        get { return year; }
        set { year = value; }
    }
}
 public class Book
{
    public string Title {get; set;}
    public string Author {get; set;}
    public string Year {get; set;}
}
 public class Book
{
    public string Title {get; set;}
    public string Author {get; set;}
    public string Year {get; set;}
}
 public class Book
{
    public string Title { get; set; }
    public string Author { get; set; }
    public string Year { get; set; }
}
 public class Book
{
    public string Title{get;set;}
    public string Author{get;set;}
    public string Year{get;set;}
    
}
 public class Book
{
    public string Title {get; set;}
    public string Author{get; set;}
    public int Year {get; set;}
}
 public class Book
{

public string Title{get; set; } 
public string Author {get; set; } 
public string Year {get; set; }

}
 public class Book
{
public string Title{get;set;}
public string Author{get;set;}
public int Year{get;set;}
}
 public class Book
{
  public string Title {set; get; }
  public string Author {set; get; }
  public int Year {set; get; }
}
 public class Book
{
public string Title{get;set;}
public string Author{get;set;}
public int Year{get;set;}
}
 public class Book
{
private string title;
private string author;
private string year;
public string Title{
    get { return title; }
    set { title = value;}
}
public string Author{
    get { return author; }
    set { author = value;}
}
public string Year{
    get { return year; }
    set { year = value;}
}
}
 public class Book
{
  public string Title {set; get;}
  public string Author {set; get;}
  public int Year {set; get;}
}
 public class Book
{
public string Title{get; set;}
public string Author{get; set;}
public int Year{get; set;}
}
 public class Book
{
    public int Title{set;get;}
    public int Author{set;get;}
    public int Year{set;get;}

}
 public class Book
{
    public int Title {
        get { return Title; }   
        set { Title = value; }}  
    public int Author {
        get { return Author; }
        set { Author = value; }}
    public int Year {
        get { return Year; }
        set { Year = value; }}
}
 public class Book
{
    public string Title {get;}
    public string Author {get;}
    public string Year {get;}
}
public class Book {
    private int title;
    private int author;
    private int year;
    
    public int Title {
        get { return title; }
        set { title = value; }
    }
    
    public int Author {
        get { return author; }
        set { author = value; }
    }
    
    public int Year {
        get { return year; }
        set { year = value; }
    }
}
 public class Book
{
    public string Title{get; private set;}
    public string Author{get; private set;}
    public int Year{get; private set;}
}
 public class Book
{
private int title;
private int author;
private int year;

public int Title{
    get{return title;}
    set{title = value;}
}
public int Author{
    get{return author;}
    set{author = value;}
}
public int Year{
    get{return year;}
    set{year = value;}
}



}
 public class Book
{
    public string Title {get; set; }
    public string Author {get; set; }
    public string Year {get; set; }
}