江苏开放大学.NET平台与C#程序设计面向对象程序设计基础(第二次形考作业占形考成绩15%)
1.在C#中 都是对象。
A 任何类型 B 任何事物 C 任何代码 D 任何技术
2.对象包含数据和 的方法。
A 在该数据上工作 B 调用 C 函数调用 D 传递参数
3.一个类是 的蓝本。
A 数据集合 B 函数集合 C 方法集合 D 给定功能集合
江苏开放大学.NET平台与C#程序设计面向对象程序设计基础程序题预览
1、使用.NET代码编辑器编写一个C#应用程序,以在屏幕打印出:
C# is the Component-oriented language in C and C++ family of language.
要求:
使用using System命名空间,即定位System命名空间的Console类。
不使用using System命名空间,即System命名空间的Console类。
使用using指令的别名,即使用using创建using的别名。
第一:
using System;
class Example1
{
public static void Main()
{
Console.Write("C# is the Component-oriented language ");
Console.WriteLine("in C and C++ family of language.");
}
}
第二:
class Example1
{
public static void Main()
{
System.Console.Write("C# is component-oriented language");
System.Console.WriteLine("in C and C++ family language.");
}
截图如下
完整版源代码及截图下载地址:
未经授权,禁止转载,发布者:形考达人,出处:https://www.xingkaowang.com/4568.html
本站不对内容的完整性、权威性及其观点立场正确性做任何保证或承诺!内容仅供研究参考,付费前请自行鉴别。
免费答案:形考作业所有题目均出自课程讲义中,可自行学习寻找题目答案,预祝大家上岸成功