當前位置:首頁 » 操作系統 » 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小時第二次違反繼續,沒有上限,電子抓拍,秋後算賬,當場被抓立即處罰,扣留車輛直至可以通行才放你走。

熱點內容
編譯udf提示無stdioh 發布:2025-09-15 21:39:25 瀏覽:21
壓縮比數據 發布:2025-09-15 21:29:52 瀏覽:199
android刷ios 發布:2025-09-15 21:22:18 瀏覽:35
買伺服器如何砍價 發布:2025-09-15 21:04:27 瀏覽:821
我的世界直連伺服器的區別 發布:2025-09-15 20:59:12 瀏覽:63
哈夫曼樹構造演算法 發布:2025-09-15 17:18:48 瀏覽:133
c語言函數要素 發布:2025-09-15 16:39:10 瀏覽:443
java讀ftp文件 發布:2025-09-15 16:15:45 瀏覽:438
sql隨機函數 發布:2025-09-15 15:20:19 瀏覽:107
校園伺服器禁止設置ip 發布:2025-09-15 15:11:06 瀏覽:784