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

熱點內容
緩存的工作原理 發布:2025-10-17 05:52:06 瀏覽:713
c語言lib文件 發布:2025-10-17 05:49:31 瀏覽:103
榮耀媒體存儲設備 發布:2025-10-17 05:48:05 瀏覽:430
wps怎麼上傳雲文檔 發布:2025-10-17 05:47:56 瀏覽:53
三星顯示器編譯器 發布:2025-10-17 05:42:45 瀏覽:784
為什麼車上的伺服器顯示異常 發布:2025-10-17 05:22:46 瀏覽:664
android中spinner 發布:2025-10-17 05:12:56 瀏覽:986
文件上傳ie8 發布:2025-10-17 04:54:55 瀏覽:760
電腦伺服器的地址在哪裡 發布:2025-10-17 04:54:22 瀏覽:400
android加密手機 發布:2025-10-17 04:35:49 瀏覽:428