/* קלט: סדרת מספרים שלמים חיוביים המסתיימת ב-(1-) פלט: סכומם של המספרים שנקלטו */ using System; public class SumOfTips { public static void Main() { int tip; // הטיפ מהמשלוח הנוכחי int sum; // סכום הטיפים המצטבר sum = 0; Console.Write("Enter your first tip for today." + " End the list of tips with -1: "); tip = int.Parse(Console.ReadLine()); while (tip != -1) { sum = sum + tip; Console.Write("Enter the next tip." + " End the list of tips with -1: "); tip = int.Parse(Console.ReadLine()); } // while Console.WriteLine("You have earned {0} shekels", sum); }// Main }// SumOfTips