1.
#pragma once
2.
using namespace System::Collections::Generic;
3.
#pragma endregion
4.
private: System::Void button1_Click(System::Object^ sender,
System::EventArgs^ e) {
5.
textBox1->Focus(); label2->Text = String::Empty;
6.
auto oylar=gcnew Dictionary(); oylar["Yanvar"]= 31;
7.
oylar["Febral"]= 28; oylar["Mart"]= 31; oylar["Aprel"]= 30;
8.
oylar["May"]= 31; oylar["Iyun"]= 30; oylar["Iyul"]= 31;
9.
oylar["Avgust"]= 31; oylar["Sentyabr"]= 30; oylar["Oktyabr"]= 31;
10.
oylar["Noyabr"]= 30; oylar["Dekabr"]= 31;
11.
for each (KeyValuePair oylar in oylar){
12.
if(oylar.Value ==Convert::ToInt32(textBox1->Text)){
13.
label2->Text = label2->Text + String::Format(
14.
"{0} - {1} \n", oylar.Key, oylar.Value); } }}
15.
private: System::Void Form1_Load(System::Object^ sender,
16.
System::EventArgs^ e) {textBox1->Focus();
17.
this->Text = "Dictanary ga misol. Oy kunlari tahlili";
18.
label1->Text = "Bir oy 30 kun:g`n";
Do'stlaringiz bilan baham: |