算法
Last updated on 3 months ago
- 输入一个数字n,求第一个大于该数字的回文数字
- 输入两个人的苹果个数的和与差,确定他们的苹果个数。 输入:苹果的数量和,苹果的数量差,输出: 两人各自苹果的个数。(请用计算机方法,而不是数学公式计算)
输入 |
输出 |
10,2 |
6,4 |
20,6 |
13,7 |
30,9 |
无 |
设有 n 个正整数a1,a2,a3,a4……an
,将它们联接成一排,相邻数字首尾相接,组成一个最大的整数。
输入格式
第一行有一个整数,表示数字个数 n。
第二行有 n个整数,表示给出的 n个整数值。
输出格式
一个正整数,表示最大的整数
输入 |
输出 |
3 13 312 343 |
34331213 |
4 7 13 4 246 |
7424613 |
完整代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
| using System; using System.Collections.Generic;
namespace HuiwenNumber { class Program { static void Main(string[] args) { Console.WriteLine("获取回数:1;获取和差值:2;获取正整数:3");
string result = Console.ReadLine();
switch (result) { case "1": Gethuishu(); break; case "2": GetHeCha(); break; case "3": GetInt(); break; default: Console.WriteLine("请输入提示的值!"); break; } }
public static void Gethuishu() { Console.WriteLine("请输入初始数字:");
string num = Console.ReadLine();
GetHuiShu.DiGui(num);
Console.ReadLine(); }
public static void GetHeCha() { Console.WriteLine("请输入和:");
string heNum = Console.ReadLine();
Console.WriteLine("请输入差:");
string chaNum = Console.ReadLine();
int heNum_ = Convert.ToInt32(heNum);
int chaNum_ = Convert.ToInt32(chaNum);
int MaxNum = (heNum_ + chaNum_) / 2;
int MinNum = (heNum_ - chaNum_) / 2;
Console.WriteLine("A有苹果" + MaxNum + "个,B有苹果" + MinNum + "个"); }
public static void GetInt() { Console.WriteLine("请输入整数个数:");
string numlength = Console.ReadLine();
List<int> listYuan = new List<int>();
for (int i = 0; i < Convert.ToInt32(numlength); i++) { Console.WriteLine("请输入第" + i + "个数字:");
string numarr = Console.ReadLine();
listYuan.Add(Convert.ToInt32(numarr)); }
List<IntList> listEntity = new List<IntList>();
for (int i = 0; i < listYuan.Count; i++) { listEntity.Add(new IntList { IntIndex = i, IntYuan = listYuan[i], IntSub = Convert.ToInt32(listYuan[i].ToString().Substring(0, 1)) }); }
maopao(listEntity);
string ZDZZS = "";
for (int i = listEntity.Count - 1; i >= 0; i--) { ZDZZS += listEntity[i].IntYuan; }
Console.WriteLine("最大正整数" + ZDZZS); }
public static List<IntList> maopao(List<IntList> intLists) { for (int i = 0; i < intLists.Count - 1; i++) { for (int j = 0; j < intLists.Count - 1 - i; j++) { if (intLists[j].IntSub > intLists[j + 1].IntSub) { IntList temp = intLists[j]; intLists[j] = intLists[j + 1]; intLists[j + 1] = temp; } } }
return intLists; } }
public class GetHuiShu { public static void DiGui(string number) { if (IsHuiWenNum(number)) { Console.WriteLine(number + "是回文数字!"); } else { int newn = Convert.ToInt32(number);
newn += 1;
DiGui(newn.ToString()); } }
public static bool IsHuiWenNum(string Num) { int mo = Num.Length % 2; string hou; string qian; if (mo > 0) { int chang = (Num.Length - 1) / 2;
qian = Num.Substring(0, chang);
hou = Num.Substring((Num.Length - chang - 1), chang); } else { qian = Num.Substring(0, Num.Length / 2);
hou = Num.Substring(Num.Length / 2, Num.Length / 2); }
if (qian == ReverseStr(hou)) { return true; } else { return false; } }
public static string ReverseStr(string original) { char[] arr = original.ToCharArray(); Array.Reverse(arr); return new string(arr); } }
public class IntList { public int IntYuan { get; set; }
public int IntIndex { get; set; }
public int IntSub { get; set; } } }
|
运行截图
第一题
第二题
第三题
算法
http://example.com/2022/05/07/算法/