Download presentation
Presentation is loading. Please wait.
1
תכנות ב C#
2
דוגמא לפלט using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.WriteLine("My name is Avi"); Console.ReadKey(); }
3
דוגמא לקלט using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { String x; x = Console.ReadLine(); Console.WriteLine("You typed {0}", x ); Console.ReadKey(); }
4
שימוש במספרים using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { String x; int y; x = Console.ReadLine(); y = int.Parse(x); Console.WriteLine("You typed {0} or {1}", x+2, y+2 ); Console.ReadKey(); }
5
IF פשוט using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string x; x = Console.ReadLine(); if (x == "a" || x == "A") Console.WriteLine("A is for apple"); else if (x == "b" || x == "B") Console.WriteLine("B is for Boy"); else Console.WriteLine("Not defined"); Console.ReadKey(); }
6
לולאה פשוטה using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { for (int i = 0; i < 100; i++) Console.WriteLine("The square root of {0} is {1} ", i, Math.Sqrt(i)); Console.ReadKey(); }
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.