homework

  1. Tool1211

    Question How would I be able to create cards

    class Card { //Base for the Card class. //Value: numbers 1 - 13 //Suit: numbers 1 - 4 //The 'set' methods for these properties could have some validation // public int Value { get; set; } // public int Suit { get; set; } // public...
  2. anabeatriz

    How to eliminate an incorrect input?

    The teacher gave us this exercise: "Write a program that calculates and displays the average of 10 typed grades. Consider valid notes, only values between 0 (zero) and 10 (ten). If the user enters any invalid value, a message should be displayed stating what happened." I wrote a code that is...
Back
Top Bottom