[VBnet] Problème avec un compteur

Problème avec un compteur [VBnet] - VB/VBA/VBS - Programmation

Marsh Posté le 16-02-2006 à 16:29:16    

Bonjour à tous.
 
Je souhaite compter le nombre de fois qu'apparait un nombre dans un tableau à deux dimensions. Mais je n'y arrive pas.
 
Voici le code que j'ai fait. Pouriez vous m'aidez à le corriger svp. merci
 

Code :
  1. Dim intNombres(,) As Integer = {{1, 2}, _
  2.                                         {4, 5}, _
  3.                                         {7, 9}, _
  4.                                         {3, 1}, _
  5.                                         {2, 3}, _
  6.                                         {5, 9}, _
  7.                                         {8, 8}, _
  8.                                         {9, 9}, _
  9.                                         {7, 3}, _
  10.                                         {2, 1}, _
  11.                                         {5, 4}}
  12.         Dim intcompteurs(8) As Integer
  13.         Dim x As Integer
  14.         Dim y As Integer
  15.         For x = 1 To 9
  16.             For y = 1 To 9
  17.                 If intNombres(x, y) Then
  18.                     intcompteurs(x - 1) = intcompteurs(x - 1) + 1
  19.                 End If
  20.             Next
  21.         Next
  22.         UnLabel.Text = CStr(intcompteurs(0))
  23.         DeuxLabel.Text = CStr(intcompteurs(1))
  24.         TroisLabel.Text = CStr(intcompteurs(2))
  25.         QuatreLabel.Text = CStr(intcompteurs(3))
  26.         CinqLabel.Text = CStr(intcompteurs(4))
  27.         SixLabel.Text = CStr(intcompteurs(5))
  28.         SeptLabel.Text = CStr(intcompteurs(6))
  29.         HuitLabel.Text = CStr(intcompteurs(7))
  30.         NeufLabel.Text = CStr(intcompteurs(8))

Reply

Marsh Posté le 16-02-2006 à 16:29:16   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed