Đây là source file program.cs
Đây là source file nhập xuất:
- Code:
using System;
public class CartesianPoint
{
public CartesianPoint(int a, int b)
{
this.a = a;
this.b = b;
}
public int tong()
{
return (a + b);
}
public int hieu()
{
return (a - b);
}
public float tich()
{
return (float)a * b;
}
public float thuong()
{
return (float)a / b;
}
int a, b;
}
Đây là source file nhập xuất:
- Code:
using System;
class pheptinh
{
public static void Main()
{
int x, y;
Console.Write("Nhap vao so x:");
x = Convert.ToInt32(Console.ReadLine());
Console.Write("Nhap vao so y:");
y = Convert.ToInt32(Console.ReadLine());
CartesianPoint p = new CartesianPoint(x, y);
Console.WriteLine("Tong hai so: {0}", p.tong());
Console.WriteLine("Hieu hai so: {0}", p.hieu());
Console.WriteLine("Tich hai so: {0}", p.tich());
Console.WriteLine("Thuong hai so: {0}", p.thuong());
Console.ReadLine();
}
}