Code C#: Nhập, xuất với mảng 1 chiều (Console)

Người đăng: chisenhungsuutam on Thứ Năm, 28 tháng 2, 2013

using System;static void Main(string[] args){    int[] a = new int[10];    //nhap gia tri cho mang 1 chieu    for (int i = 0; i < 10; i++){        Console.Write("Nhap a[{0}]=", i);      [...]
More about

Code C#: Tổng 2 số nguyên a, b nhập từ bàn phím (Console)

Người đăng: chisenhungsuutam

using System;namespace Tong2so{    class Program {        static void Main(string[] args) {            int a, b, kq;            Console.WriteLine(" Nhập [...]
More about

Code C#: Giải phương trình bậc nhất (Console)

Người đăng: chisenhungsuutam

using System; namespace PhuongTrinhBacNhat{    class Program {        static void Main(string[] args) {            Console.Write("Nhap he so a :");        [...]
More about

Code C#: Code Examples sample source codes

Người đăng: chisenhungsuutam on Thứ Tư, 27 tháng 2, 2013

Center form window  using System;  using System.Drawing;  using System.Collections;  using System.ComponentModel;  using System.Windows.Forms;  using System.Data;  public class Form1 : System.Windows.Forms.Form {  [...]
More about

Code C#: Code Examples sample source codes

Người đăng: chisenhungsuutam

Get selected checkbox list itemsusing System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;public class Form1 : System.Windows.Forms.Form {   private System.Windows.Forms.CheckedListBox [...]
More about

Code C#: Giải phương trình bậc 2 (Console)

Người đăng: chisenhungsuutam

/* Giải và biện luận phương trình bậc 2 (sử dụng ứng dụng Console) */using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace GiaiPT_bac2{    class Program{        static void Main(string[] [...]
More about