Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main()
- {
- // בקשת קלט מהמשתמש
- Console.Write("הכנס את אורך הצלע של הקובייה: ");
- int a = int.Parse(Console.ReadLine());
- // חישוב הנפח
- int נפח = a * a * a;
- // חישוב שטח הפנים
- int שטח_פנים = 6 * (a * a);
- // פלט התוצאות
- Console.WriteLine($"נפח הקובייה: {נפח}");
- Console.WriteLine($"שטח הפנים של הקובייה: {שטח_פנים}");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment