Write a program in C# Sharp to declare a simple structure
- برمجة سي شارب
- برمجة
- 2021-05-31
- ahmadghneem
الأجوبة
using System;
struct w3rStruct
{
public int x;
public int y;
}
class strucExer1
{
public static void Main()
{
Console.Write("\n\nDeclare a simple structure :\n");
Console.Write("--------------------------------\n");
w3rStruct w3st = new w3rStruct();
w3st.x = 15;
w3st.y = 25;
int sum = w3st.x + w3st.y;
Console.WriteLine("The sum of x and y is {0}\n",sum);
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال