Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Impara Practicing Structs | Structs & Enumerators
C# Beyond Basics

bookPracticing Structs

Fill in the blanks to create a struct called Car which has the following attributes:

  1. name of type string;
  2. model of type int;
  3. mileage of type float.

Also fill in the blanks to complete the output statement.

index.cs

index.cs

copy
12345678910111213141516171819202122
using System; struct ___ { ___; ___; ___; } class Program { static void Main(string[] args) { Car car; car.model = 2023; ___ = "Hilux"; car.mileage = 2000; Console.WriteLine($"The {car.name} has a mileage of {___} miles."); } }

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 2. Capitolo 3

Chieda ad AI

expand

Chieda ad AI

ChatGPT

Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione

Suggested prompts:

Can you explain how structs differ from classes in C#?

What happens if I don't use the public keyword for the struct fields?

Can you show how to create and use multiple Car structs?

Awesome!

Completion rate improved to 2.04

bookPracticing Structs

Scorri per mostrare il menu

Fill in the blanks to create a struct called Car which has the following attributes:

  1. name of type string;
  2. model of type int;
  3. mileage of type float.

Also fill in the blanks to complete the output statement.

index.cs

index.cs

copy
12345678910111213141516171819202122
using System; struct ___ { ___; ___; ___; } class Program { static void Main(string[] args) { Car car; car.model = 2023; ___ = "Hilux"; car.mileage = 2000; Console.WriteLine($"The {car.name} has a mileage of {___} miles."); } }

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 2. Capitolo 3
some-alt