用c#编程:输入10个不相等整数存入数组中,找出其中最小的两个数并输出。
2.从键盘输入两个字符串str1和str2,要求不用库函数strcat把串str2的前五个字符连接到串str1中;如果字符串str2的长度小于5,则把字符串str2的所有...
2.从键盘输入两个字符串str1和str2,要求不用库函数strcat把串str2的前五个字符连接到串str1中;如果字符串str2的长度小于5,则把字符串str2的所有元素都连接到str1中
这是两个题 展开
这是两个题 展开
展开全部
Console.WriteLine("请输入第一个字符串");
string str1 = Console.ReadLine();
Console.WriteLine("请输入第二个字符串");
string str2 = Console.ReadLine();
str1 +=str2.Length>5? str2.Substring(0, 5):str2;
Console.WriteLine("str1\t=\t"+str1);
int j = 0;
int[] arr = new int[10];
do
{
Console.WriteLine("请输入第"+(j+1)+"个数");
arr[j] = Convert.ToInt32(Console.ReadLine());
j++;
} while (j<10);
int min2=arr[0];
for (int i = 0; i < arr.Length; i++)
{
if (arr[i]>arr.Min()&& arr[i] < min2)
{
min2 = arr[i];
}
}
Console.WriteLine("最小的数是\t"+arr.Min()+"\t和\t"+min2);
string str1 = Console.ReadLine();
Console.WriteLine("请输入第二个字符串");
string str2 = Console.ReadLine();
str1 +=str2.Length>5? str2.Substring(0, 5):str2;
Console.WriteLine("str1\t=\t"+str1);
int j = 0;
int[] arr = new int[10];
do
{
Console.WriteLine("请输入第"+(j+1)+"个数");
arr[j] = Convert.ToInt32(Console.ReadLine());
j++;
} while (j<10);
int min2=arr[0];
for (int i = 0; i < arr.Length; i++)
{
if (arr[i]>arr.Min()&& arr[i] < min2)
{
min2 = arr[i];
}
}
Console.WriteLine("最小的数是\t"+arr.Min()+"\t和\t"+min2);
展开全部
我的账号qiushuzhen07,答案不能提交,所以换这里回答了
下面的程序,输入时我自己定义的,你得该成从键盘输入,Console.ReadLine()就可以了
1. int[] a = { 12, 34, 45, 11, 34, 23, 22, 98, 65, 80 };
for (int i = 0; i < 2; i++){
for (int j = 9; j > i; j--){
if (a[j] < a[j - 1]){
int c = a[j];
a[j] = a[j - 1];
a[j - 1] = c;}}}
Console.WriteLine("最小值为{0},{1}",a[0],a[1]);
2. string str1 = "hello,Lily.";
string str2 = "Hi,Lidiya";
if (str2.Length < 5)
str1 += str2;
else
str1 += str2.Substring(0, 5);
Console.WriteLine(str1);
下面的程序,输入时我自己定义的,你得该成从键盘输入,Console.ReadLine()就可以了
1. int[] a = { 12, 34, 45, 11, 34, 23, 22, 98, 65, 80 };
for (int i = 0; i < 2; i++){
for (int j = 9; j > i; j--){
if (a[j] < a[j - 1]){
int c = a[j];
a[j] = a[j - 1];
a[j - 1] = c;}}}
Console.WriteLine("最小值为{0},{1}",a[0],a[1]);
2. string str1 = "hello,Lily.";
string str2 = "Hi,Lidiya";
if (str2.Length < 5)
str1 += str2;
else
str1 += str2.Substring(0, 5);
Console.WriteLine(str1);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这是c/c++的题目,可这里是 c#/.net 栏目呀。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询