This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Linq; | |
| namespace Tuto_Alphanumerique | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| for (int i = 10; i < 100; i+=5) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 'Vous pouvez copier ce code et le coller dans l'éditeur de macros Excel VBA | |
| Option Explicit | |
| '********************************************************* | |
| 'Fonction VBA qui renvoit un résultat de type entier | |
| '********************************************************* | |
| private Function Additionner(a As Integer, b As Integer) As Integer | |
| Dim somme As Integer ' définition des variables | |
| somme = a + b ' addition |