0
Gautam
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { // number of games int playCount = 100; Game game = new Game(); int wins = 0; for (int i = 0; i < playCount; i++) { if (game.playGame()) { wins++;
1 Respuesta
+ 1
what u want to ask