17 Mart 2015 Salı

TEXTBOXA GİRİLEN METNİ TERS YAZDIRMA


KOD KISMI

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ters_yazdırma
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            label1.Text = "";
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string metin = textBox1.Text;
            string tut = "";
            label1.Text = "";
            int toplam = 0;
            int harfsayisi = Convert.ToInt32(metin.Length);
            for (int i = 0; i < metin.Length; i++)
            {
                tut = metin[i].ToString();

                toplam = toplam + Convert.ToInt32(tut);
            }
            label1.Text = toplam.ToString();
        }
    }
}

Hiç yorum yok: