מבחן מערכות ספרתיות ומבוא לאלקטרוניקה
25/01/2018
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearnQueue { // תור = הראשון שנכנס הוא הראשון שיוצא
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication103 { class Node<T> // "המחלקה "צומת { private T info; private Node<T> next; public Node(T info) { this.info = info; this.next = null; } public Node(T info, Node<T> next) { this.info = info; this.next = next; }
class Program { // פונקציה ג'נרית להדפסה של איברי מערך מכל סוג מספרי static void PrintArray<E>(E[] inputArray) { foreach (E element in inputArray) Console.Write(element + ", "); Console.WriteLine("\n"); } static void Main(string[] args) { // double ו int יצירת מערך של int[] intArray = { 1, 2, 3, 4, 5, 6 }; double[] doubleArray = { 1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7 }; // int הדפסת מערך PrintArray<int>(intArray); // 1, 2, 3, 4, 5, 6, :ידפיס // double הדפסת מערך PrintArray<double>(doubleArray); // 1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, :ידפיס } }