אשכול: עזרה ב C#
View Single Post
ישן 03-11-06, 16:42   # 3
stav
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 144

stav לא מחובר  

הכנתי את התוכנית באופן מלא .

קוד:
int a, b;
            Console.WriteLine("get a");
            a = int.Parse(Console.ReadLine()); 
            Console.WriteLine("get b");
            b = int.Parse(Console.ReadLine());
            a = a + b;
            b = a - b;
            a = a - b;
            Console.WriteLine("A=" + a) ;
            Console.WriteLine("B=" +b);
            Console.ReadLine();
  Reply With Quote