當前位置:首頁 » 操作系統 » jwe演算法

jwe演算法

發布時間: 2022-06-28 11:15:28

A. 求兩道C#的課後題目答案~

第一題:
using System;
using System.Collections.Generic;
using System.Text;

namespace Bai
{
class Program
{
static void Main(string[] args)
{
string[] article = { "the", "a", "one", "some", "any" };
string[] noun = { "boy", "girl", "dog", "town", "car" };
string[] verb = { "drove", "jumped", "ran", "walked", "skipped" };
string[] preposition = { "to", "from", "over", "under", "on" };

Random rnd = new Random();
string sen = string.Empty;
for (int i = 0; i < 10; i++)
{
sen += article[rnd.Next(0, 5)] + " ";
sen += noun[rnd.Next(0, 5)] + " ";
sen += verb[rnd.Next(0, 5)] + " ";
sen += preposition[rnd.Next(0, 5)] + " ";
sen += article[rnd.Next(0, 5)] + " ";
sen += noun[rnd.Next(0, 5)] + ".";

Console.Write(char.ToUpper(sen[0]));
Console.WriteLine(sen.Substring(1));

sen = string.Empty;
}

Console.ReadKey(true);
}
}
}

第二題

private void button4_Click(object sender, EventArgs e)
{
string ss = "abcdeftghwefjweiobbbb"; //你需要的話就自己輸入
string sa = ss.Substring(0, 1);
ss = ss.Substring(0, ss.Length -1);
ss += sa+"ay";
MessageBox.Show(ss);
}

B. 唐山限號怎麼處罰

違反限行規定罰款100元,不扣分,累積4小時第二次違反繼續,沒有上限,電子抓拍,秋後算賬,當場被抓立即處罰,扣留車輛直至可以通行才放你走。

熱點內容
cod17編譯著色器55 發布:2025-07-08 15:43:53 瀏覽:558
Shell腳本的posix模式 發布:2025-07-08 15:41:32 瀏覽:352
壓縮奶油消泡 發布:2025-07-08 15:40:11 瀏覽:425
伺服器一定要有公網ip嗎 發布:2025-07-08 15:35:12 瀏覽:797
appendpython 發布:2025-07-08 15:22:54 瀏覽:656
安卓虛擬號碼怎麼設置 發布:2025-07-08 15:22:04 瀏覽:663
c語言愛心代碼編譯不出來 發布:2025-07-08 15:11:07 瀏覽:540
qq密碼的資料庫 發布:2025-07-08 14:54:50 瀏覽:6
多圖床源碼 發布:2025-07-08 14:46:36 瀏覽:573
sqldblinkoracle 發布:2025-07-08 14:44:50 瀏覽:608