展开全部
不知道这样满足了你的要求没有?
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string[] str = new string[10];
int[] s = new int[10];
Console.WriteLine("请输入十个字符串");
for (int i = 0; i < str.Length; i++)
str [i]= Console.ReadLine();
for (int i = 0; i < str.Length; i++)
s[i] = Convert.ToInt32(str[i]);
int a=0;
for (int i = 0; i < str.Length; i++)
a += s[i];
Console.WriteLine("a={0}" , a);
}
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string[] str = new string[10];
int[] s = new int[10];
Console.WriteLine("请输入十个字符串");
for (int i = 0; i < str.Length; i++)
str [i]= Console.ReadLine();
for (int i = 0; i < str.Length; i++)
s[i] = Convert.ToInt32(str[i]);
int a=0;
for (int i = 0; i < str.Length; i++)
a += s[i];
Console.WriteLine("a={0}" , a);
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
将字符串数组元素一个一个取出放入另一个int数组
namespace stringTOint
{
class Program
{
static void Main(string[] args)
{
string[] str ={"12","2" };
int[] str1 =new int[str.Length];
for (int i = 0; i < str.Length; i++)
{
string m = str[i].ToString();
str1[i] = Int32.Parse(m);//在这里强制转换类型,但不能转换字母或汉字,只能为数字字符串
}
foreach (int i in str1)
Console.WriteLine("{0}",i);
}
}
}
namespace stringTOint
{
class Program
{
static void Main(string[] args)
{
string[] str ={"12","2" };
int[] str1 =new int[str.Length];
for (int i = 0; i < str.Length; i++)
{
string m = str[i].ToString();
str1[i] = Int32.Parse(m);//在这里强制转换类型,但不能转换字母或汉字,只能为数字字符串
}
foreach (int i in str1)
Console.WriteLine("{0}",i);
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你需要的是将string数组中的每一个元素都按照特定的编码方式转换为单独的int数组还是想把每一个元素都转换为一个合适的int?
如果是前者的话,你想用什么Encoding,Unicode吗?
如果是前者的话,你想用什么Encoding,Unicode吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int i = Convert.ToInt32("要转换的数字字符串");
把要转换的数字字符串转换为整数
.ToInt32() 是指转换为32位的整数。
把要转换的数字字符串转换为整数
.ToInt32() 是指转换为32位的整数。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
循环是少不了。关键是用好转换的函数
有:Int.parse();
ConvertToInt()
有:Int.parse();
ConvertToInt()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询