Exemple
Donc en sortie: <13,42,66,91,123,132> using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TriBubble { class Program { static void Main(string[] args) { const int MaxTableau = 8; int K,L,I,J; int[] Tableau = { 15, 10, 23, 2, 8, 9, 14, 16 }; Console.Write("Avant:"); for(K = 0; K < MaxTableau; K++) Console.Write(Tableau[K] + ", "); for(I = MaxTableau - 2;I >= 0; I--) { for(J = 0; J <= I; J++) { if(Tableau[J + 1] < Tableau[J]) { int t = Tableau[J + 1]; Tableau[J + 1] = Tableau[J]; Tableau[J] = t; } } } Console.WriteLine(); Console.Write("Après:"); for(L = 0; L < MaxTableau; L++) { Console.Write(", " + Tableau[L]); } Console.WriteLine(); } } } Exercices d’applicationCorrection
Correction
Correctionusing System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace exercice3 { class Program { static int [] tab=new int[10]; static void Main(string[] args) { exercice_3(); TriTabCroissant(); TriTabDecroissant(); } static void exercice_3() { for(int i=0;i<10;i++) { Console.WriteLine("Saisir lélémént {0}" , i+1); //if(isNumeric(Console.ReadLine())) //{ tab[i] =Convert.ToInt32( Console.ReadLine()); //} } for (int i = 0; i < 10; i++) { Console.WriteLine("L'élémént {0} est : {1}" ,i, tab[i]); } } static void TriTabCroissant() { Console.WriteLine("Triage du tableau dans l'ordre croissant"); int t; //Triage du tableau for (int i = 0; i < 9; i++) { for (int j = 0; j < 10 - 1; j++) { if (tab[j] > tab[j + 1]) { t = tab[j + 1]; tab[j + 1] = tab[j]; tab[j] = t; } } } for (int i = 0; i < 10; i++) { Console.WriteLine(tab[i]); } } static void TriTabDecroissant() { Console.WriteLine("Triage du tableau dans l'ordre décroissant"); int t; //Triage du tableau for (int i = 0; i < 9; i++) { for (int j = 0; j < 10 - 1; j++) { if (tab[j] < tab[j + 1]) { t = tab[j + 1]; tab[j + 1] = tab[j]; tab[j] = t; } } } for (int i = 0; i < 10; i++) { Console.WriteLine(tab[i]); } } } } Riadh HAJJI You may also likeC#: Les variables
18 octobre, 2023
C#: définition d’une variable // Rappel d’algorithmique Les données d’un programme doivent être stockées dans la mémoire vive de l’ordinateur afin d’être traitées ou comparées. Les différents espaces mémoires utilisables par le programmeur sont appelés variables, nommées ainsi puisqu’elles … Réponses aux exercices les variables en c sharp ex7
23 février, 2018
Réponses aux exercices les variables en c sharp ex7 Réponse de l’exercice les variables c# 7: Énoncé using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace exercice_7_les_variables { class Program { static void Main(string[] args) { Single largeur, … Réponses aux exercices les variables en c sharp ex6
23 février, 2018
Réponses aux exercices les variables en c sharp ex6 Réponse de l’exercice les variables c# 6: Énoncé using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace exercice_6_les_variables { class Program { static void Main(string[] args) { double cote; … |