tgoop.com/beginprogrammer/458
Last Update:
إ₰ــــ👨🏻💻👩🏻💻ــــ₰❥
كود لتوضيح الروابط < المعاملات >
using System;
using System.Text;
using System.Threading.Tasks;
namespace Operators
{
class program
{
static void Main(string[] args)
{
//arithmetic operators
int x;
int y;
int sum;
x = 7;
y = 9;
sum = x + y;
Console.Write("the sum is=" + sum);
//test operator
bool test = 5 > 6;
Console.WriteLine("test :" + test);
//logic operators
bool test2 = 5 > 6 && 4 < 9;
Console.WriteLine("test2 : " + test2);
Console.ReadKey();
}
}
}
•┈┈┈•❈••✦✾✦••❈•┈┈┈•
•┈┈┈•❈••✦✾✦••❈•┈┈┈•
المخـ₰💻₰❥ـرجات
the sum is= 16
test : False
test2 : False
BY بدايه مبرمج
Share with your friend now:
tgoop.com/beginprogrammer/458