c#基礎 第六講

來源:互聯網
上載者:User

標籤:

燒開水

先詢問:“是否要燒開水(Y/N)”

是的話執行--0°--100°(30°---水溫了,50°---水熱了,80°---水快開了,100°---水已經開了,
結束。)

判斷 迴圈 選擇 跳轉

 

 

鬧鐘服務
定義需要提醒的時間(2015-03-04 18:30)看新聞聯播。。。。。

擷取目前時間,時間以分鐘為單位迴圈增加,直到判斷與定義鬧鐘時間相等時選擇提醒是否關閉鬧鐘,否的話,定義時間增加五分鐘後再次提醒。

 

 

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;


namespace MYTest
{
class Program
{
static void Main(string[] args)
{
/* Console.WriteLine("請輸入判斷年份:");
int x = Convert.ToInt32(Console.ReadLine());

if (x%400==0||(x % 4 == 0&&x%100!=0))
{

Console.WriteLine(x+"是閏年!");
}
else
{
Console.WriteLine(x + "不是閏年!");
}

*/

 


/*
Console.WriteLine("請輸入三個數自動判斷大小:");
int a, b, c, jg;
a = Convert.ToInt32(Console.ReadLine());
b = Convert.ToInt32(Console.ReadLine());
c = Convert.ToInt32(Console.ReadLine());
if (a>b&&a>c)
{
jg = a;
}
else if (b>a&&b>c)
{
jg = b;
}
else
{
jg = c;
}
Console.WriteLine("最大的數是" + jg);*/

 

/*
Console.WriteLine("請輸入一個24以內的數:");
int a;
string zh;
a = Convert.ToInt32(Console.ReadLine());
if (a>12)
{
if (a==24)
{
zh = ("00AM");
}
else
{
zh = (a - 12)+"PM";
}

}
else
{
zh = a + "AM";
}
Console.WriteLine(zh);
*/

//Console.WriteLine("我們結婚吧");
//string a, b, c, jg = "無語。。。。";
//Console.WriteLine("女神問:“有房子嗎?”");
//a = Console.ReadLine();
//if (a == "有")//如果有房子我就問下一個問題
//{
// Console.WriteLine("女神問:“有車子嗎?”");
// b = Console.ReadLine();
// if (b == "有")//如果有車子我就問下一個問題
// {
// Console.WriteLine("女神問:“有票子嗎?”");
// c = Console.ReadLine();
// if (c == "有")//如果有票子。。。。。
// {
// jg = "我們結婚吧";
// }
// else//沒有票子如何回答
// {
// jg = "抓緊賺錢吧";
// }
// }
// else//沒有車子女神如何回答
// {
// jg = "抓緊買車吧,然後再說。";
// }
//}
//else//沒有房子女神如何回答
//{
// jg = "連房子都沒有,我就不往下問了。";
//}

//Console.WriteLine(jg);
//Console.ReadKey();

 

 


//Console.WriteLine("我們結婚吧");
//string a, b, c, jg="無語。。。。";
//Console.WriteLine("女神問:“有房子嗎?”");
//a = Console.ReadLine();


//switch (a)
//{
// case "有":
// Console.WriteLine("女神問:“有車子嗎?”");
// b = Console.ReadLine();
// switch (b)
// {
// case "有":
// Console.WriteLine("女神問:“有票子嗎?”");
// c = Console.ReadLine();
// switch (c)
// {
// case "有":
// jg = "我們結婚吧";
// break;
// case "無":
// jg = "抓緊賺錢吧";
// break;
// default:
// break;
// }
// break;
// case "無":
// jg = "等你有了車子再說吧";
// break;
// default:
// break;
// }
// break;
// case "無":

// jg = "房子都沒有,別的我就不問了。。。。自己看著辦吧。。。。。";
// break;
// default:
// break;
//}
// Console.WriteLine(jg);
// Console.ReadKey();


//int a;
//string x="";
//Console.WriteLine("請選擇0-12之內的字");
//a=Convert.ToInt32( Console.ReadLine());
//switch (a)
//{
// case 0:
// x = "選擇的是0";
// break;
// case 1:
// x = "選擇的是1";
// break;
// case 2:
// x = "選擇的是2";
// break;
// case 3:
// x = "選擇的是3";
// break;
// case 4:
// x = "選擇的是4";
// break;
// case 5:
// x = "選擇的是5";
// break;
// case 6:
// x = "選擇的是6";
// break;
// case 7:
// x = "選擇的是7";
// break;
// case 8:
// x = "選擇的是8";
// break;
// case 9:
// x = "選擇的是9";
// break;
// case 10:
// x = "選擇的是10";
// break;
// case 11:
// x = "選擇的是11";
// break;
// case 12:
// x = "選擇的是12";
// break;

// default:
// x = "選擇的是預設";
// break;
//}
//Console.WriteLine(x);
//Console.ReadKey();

//Random r = new Random();
//string x,y;
//int a=r.Next(0,3);
//int b=r.Next(0,3);

//switch (a)
//{
// case 0://剪刀
// x = "剪刀";
// break;
// case 1://石頭
// x = "石頭";
// break;
// case 2://布
// x = "布";
// break;
// default:
// x = "耍賴";
// break;
//}
//switch (b)
//{
// case 0://剪刀
// y = "剪刀";
// break;
// case 1://石頭
// y = "石頭";
// break;
// case 2://布
// y = "布";
// break;
// default:
// y = "耍賴";
// break;
//}

//Console.WriteLine("x出的是"+x);
//Console.WriteLine("y出的是" + y);
//string jg = "";
//if (a==b)
//{
// jg = "平局";
//}
//else if (a>b)
//{
// if (a==2&&b==0)
// {
// jg = "Y勝利";
// }
// else
// {
// jg = "X勝利!";
// }

//}
//else if (b>a)
//{
// if ((b==2&&a==0))
// {
// jg = "X勝利!";
// }
// else
// {
// jg = "Y勝利!";
// }

//}
//if (a==b)
//{
// jg = "平局";
//}
//else if (a>b||(b==2&&a==0))
//{
// jg = "a勝利";
//}
//else if (b>a||(a==2&&b==0))
//{
// jg = "b勝利";
//}

 

 

 

 

 

 


//DateTime d=DateTime.Now;

//while (true)
//{
// if (d.ToShortTimeString() == "12:00")
// {
// Console.WriteLine(d+"該下課了");
// }
// else
// {
// Console.WriteLine(d);
// }

// d = d.AddMinutes(1);
// if (d.ToShortTimeString()=="13:00")
// {
// break;
// }
//}

 

 

 

 

 


//while (true)
//{
// DateTime m = DateTime.Now;
// Console.WriteLine(m);
// //TimeSpan time = new TimeSpan(1,1,0,0);

// //m= m.Add(time);
// Console.WriteLine(m.AddHours(3));
// Console.WriteLine(m.AddMonths(1));
// Console.WriteLine(m.AddYears(1));
// Console.WriteLine(m.Date);
// Console.WriteLine(m.DayOfWeek);
// Console.WriteLine(m.Hour);
// Console.WriteLine(m.Month);
// Console.WriteLine(m.TimeOfDay);
// Console.WriteLine(m.Year);
// Console.WriteLine(m.ToShortDateString());

// Console.WriteLine(m.DayOfYear.ToString());

 

// Console.WriteLine(m);
// Console.Write("是否退出(Y/N)");

// if (Console.ReadLine().ToUpper() == "Y")
// {
// break;
// }

 


//}

 

//while (true)
//{
// Console.Write("請輸入一個年份");
// string d1 = Console.ReadLine();
// try
// {
// DateTime dt = new DateTime();
// dt = DateTime.Parse(d1+"/2/29");
// Console.WriteLine("閏年");
// }
// catch (Exception)
// {
// Console.WriteLine("不是閏年");

// }

// Console.Write("是否退出(Y/N)");

// if (Console.ReadLine().ToUpper() == "Y")
// {
// break;
// }
//}

int y=9;

for (int i = 1; i <=5; i++)
{
// Console.WriteLine("第"+i+"次迴圈");
for (int j = 1; j <= 5; j++)
{
if ((i == 3 || j == 3)||(i==1)||(i==5)||(j==1)||(j==5))
{
Console.Write("○");
}
else
{
Console.Write(" ");
}
}
Console.WriteLine();

}

Console.WriteLine("將“HelloWorld”每個字取出,輸出大寫。");
string str = "HelloWorld";
for (int i = 0; i < str.Length; i++)
{
Console.Write(str.Substring(i, 1).ToUpper()+"\t");
}


Console.ReadLine();

 

 

 

 



}

}
}

c#基礎 第六講

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.