还是会出错啊。 int a = int。parse(Console.ReadLine():)

 我来答
zhouciming
2012-02-15 · TA获得超过223个赞
知道小有建树答主
回答量:393
采纳率:0%
帮助的人:159万
展开全部
你这是啥语言啊,有这函数吗?查下帮助文档就知道了。

C语言中将字符串转换成整数(int): atoi
int atoi( const char *string );

#include <stdlib.h>
#include <stdio.h>

void main( void )
{
char *s; double x; int i; long l;

s = " -2309.12E-15"; /* Test of atof */
x = atof( s );
printf( "atof test: ASCII string: %s\tfloat: %e\n", s, x );

s = "7.8912654773d210"; /* Test of atof */
x = atof( s );
printf( "atof test: ASCII string: %s\tfloat: %e\n", s, x );

s = " -9885 pigs"; /* Test of atoi */
i = atoi( s );
printf( "atoi test: ASCII string: %s\t\tinteger: %d\n", s, i );

s = "98854 dollars"; /* Test of atol */
l = atol( s );
printf( "atol test: ASCII string: %s\t\tlong: %ld\n", s, l );
}

Output

atof test: ASCII string: -2309.12E-15 float: -2.309120e-012
atof test: ASCII string: 7.8912654773d210 float: 7.891265e+210
atoi test: ASCII string: -9885 pigs integer: -9885
atol test: ASCII string: 98854 dollars long: 98854
百度网友b531a51
2012-03-07
知道答主
回答量:19
采纳率:0%
帮助的人:8.3万
展开全部
int a = int.Parse(Console.ReadLine());
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
九尾狐_妖静
2013-03-16
知道答主
回答量:1
采纳率:0%
帮助的人:1524
展开全部
好吧 试验了下 我说的也错了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式