C程序题运行结果题

更新时间:2023-05-14 19:37:12 阅读: 评论:0

三 写出运行结果题
(1)
using System;
class Program
{
    static void Main()
    {
        int x = 3;
        Console.Write("星期:");
        Console.WriteLine((Weekday)x);
        Console.Write("月份:");
        Console.WriteLine((夸女人漂亮的成语Month)x);
        Console.Write("季节:"牛肉烧胡萝卜);
        Console.WriteLine((Season)x);
    }
    enum Weekday
    {
        未知 = -1, 星期天, 星期一, 星期二, 星期三, 星期四,星期五,星期六
    }
    enum Month
    {
        一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月, 未知 = -1
星期: 星期三
我的好儿熄月份: 四月
季节:3
    }
    enum Season
    {
        春, 夏 = 2, 秋 = 4, 冬 = 8
    }
}
(2)
using System;
class Program
{
    static void Main()
    {
        class1 c1 = new class1();
        class1.y = 5;
        c1.Output();
        class1 c2 = new class1();
        c2.Output();
    }
}
public class class1
烂字开头的成语
爱尚辅助网
0
5
0
0
5
5
{
关于读书的画    private static int x = 0;
    public static int y = x;
    public int z = y;
    public void Output()
    {
        Console.WriteLine(class1.x);
        Console.WriteLine(class1.y);
        Console.WriteLine(z);
    }
}
(3)
using System;
class Program
{
    static 开面馆void Main()
    {文员实习
        IA ia = new B();
        Console.WriteLine("{0} {1} {2} {4}", ia is IA, ia is IB, ia is A, ia is A, ia is B, ia is C);
    }
}
public interface IA { }
public interface IB : IA { }
True True Fal True
public class A : IA { }
public class B : IB { }
public class C : B, IB { }
(4)
using System;
class Program
{
    static void Main(string[] args)
    {
        MyClass y = new MyClass();
        BaClass x = y;
        x.i = 100;
        Console.WriteLine("{0}, {1}", x.i, y.i);
    }
}
class BaClass
{
    public int i;
}
100,0
class MyClass : BaClass

本文发布于:2023-05-14 19:37:12,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/631287.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:成语   运行   月份   文员   结果   好儿   实习   写出
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图