Board logo

标题: 速求 3.8 习题答案!!! [打印本页]

作者: yqxmoon    时间: 2009-11-16 23:00     标题: 速求 3.8 习题答案!!!

问题在书上的41页。
作者: fwbook    时间: 2009-11-17 12:26

3.8习题有两个题目。你对哪个题目育疑问呢?
作者: yqxmoon    时间: 2009-11-17 16:44

第二个,我做到这样不会做了,不知道怎么转换

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace Test_03
{
    class class1
    {
        static void Main(string[] args)
        {
            int vint = 456;
            string vstring = "123";

            string s = String.IsInterned(vint);
            int i = Int32.Parse(vstring);

            Console.WriteLine("vint变量转字符串:" + s);
            Console.WriteLine("vstring变量转整数:" + i);
            Console.Read();
        }
    }
}
作者: dorient    时间: 2009-11-18 21:36

vint.ToString()可以转换为字符串;
Int32.Parse(vstring);可以转换为一个整数。
作者: yqxmoon    时间: 2009-11-18 23:18

谢谢!!!!!!!!!




欢迎光临 万卷图书 (http://wanjuanchina.net/) Powered by Discuz! 7.0.0