首页 > Windows开发 > 详细

以下C#程序的输出结果是( )。

时间:2016-02-24 10:54:40      阅读:244      评论:0      收藏:0      [点我收藏+]

以下程序的输出结果是( )。

using System;

namespace HoverTreeTikuConsole
{
class Program
{
static void Main(string[] args)
{
MyStruct s1 = new MyStruct(1, 2);
s1.x = 2;
s1.Sum();
Console.ReadLine();
}
}

/// <summary>
/// http://hovertree.com/h/bjaf/g8bsql7s.htm
/// </summary>
struct MyStruct
{
public int x;
public int y;
public MyStruct(int i, int j)
{
x = i;
y = j;
}
public void Sum()
{
int sum = x + y;
Console.WriteLine("the sum is {0}", sum);
}
}

答案:http://hovertree.com/tiku/bjaf/uawcvwwa.htm

http://hovertree.com/tiku/

http://sosoft.cnblogs.com/

以下C#程序的输出结果是( )。

原文:http://www.cnblogs.com/sosoft/p/csti.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!