如何在数据类型简短的情况下显示结果? [英] How can the result be displayed with the data type short?

查看:98
本文介绍了如何在数据类型简短的情况下显示结果?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  {

        static void Main(string [] args)

        {   

           短号num1 = 3;

           短  num2 = 4;

           结果短;

           结果=(num1 + num2);

            Console.WriteLine("" + result); 

        }¥b $ b    }

  {
        static void Main(string[] args)
        {   
            short num1 = 3;
            short  num2 = 4;
            short result ;
            result =(num1 + num2);
            Console.WriteLine(""+result); 
        }
    }

推荐答案

试试这个:

result = (short)( num1 + num2 );
Console.WriteLine( result );




或将结果的类型更改为 int


or change the type of result to int.


这篇关于如何在数据类型简短的情况下显示结果?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆