سبحان الله ... تذكرت مؤاخاة النبي عليه الصلاة والسلام بين المهاجرين والأنصار، بوركت أستاذ حسونة.
@AhmedEl-Saadany4 ай бұрын
وانا والله
@zakiinounii71027 күн бұрын
شكرا
@nemssiss3 жыл бұрын
جزاك الله عنا الف خير الله يبارك فيك.
@BlueX8803 жыл бұрын
لم أفهم ما الفائدة بالضبط
@ahmedsy32696 жыл бұрын
الله يجزيك الخير
@mahmoudhegazy93906 жыл бұрын
ربنا يجزيك كل خير يا أستاذ احمد
@yosifpharmapro67686 жыл бұрын
أحسنت اخي وجزاك الله كل خير وجعله في ميزان حسناتك
@yousifalrubaie97234 жыл бұрын
using System; namespace implicit_conversion { class Program { static void Main(string[] args) { int num1 =20000; int num2 =50000; long total; /*In this the int values are implicitly converted to long data type;*/ /*Programmer need not to tell compiler to do the conversion, it automatically does.*/ total = num1 + num2; Console.WriteLine("Total is : " + total); Console.ReadLine(); } } }