-
大小写是严格区分的
查看全部 -
Console.Write("Hello Word。\n"); 输出一句话的命令
不调试直接运行Ctrl+F5
namespace 命名空间,作用是组织和管理类,一个命名空间下可能有多个类
class类 类是C#程序的最小单元,C#程序是由一个一个的类的组成的
一些常用的类是由微软提供的,减少代码量,using+命名空间就是导入命名空间,以便使用其中的类
查看全部 -
解决方案资源管理器窗口 ,对整个应用程序的资源进行管理
解决方案名称
解决方案下包含了一个项目
一个解决方案下可能包含多个项目
扩展名为.cs的文件Program.cs
C#的程序的源代码扩展名都是以.cs结尾的,这就是C#程序的源文件
视图中解决方案资源管理器
帮助:查看帮助 可以找到有关C#的技术信息,搜索技术文章
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
//声明整型数组,保存一组整数
int[] num = new int[] { 3, 34, 43, 2, 11, 19, 30, 55, 20 };
//请完善代码,判断数组中有没有7的整倍数
bool haveZb = false;
for (int i = 0; i < num.Length; i++)
{
if (num[i]%7==0)
{
haveZb = true;
break;
}
}
if (haveZb)
Console.Write("有7的整倍数");
else
Console.Write("没有7的整倍数");
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string[] t = new string[] { "C", "Sh", "a", "rp" };
//遍历字符串数组t
foreach (string x in t)
{
Console.Write(x);
}
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int[] score = { 85, 76, 98, 100, 62, 60 };//分数
bool hasNopass = false;//记录是否有不及格的,默认没有
for (int i = 0; i < score.Length; i++)
{
if (score[i] < 60)//如果有不及格的
{
hasNopass = true;//记录有不及格的
break;
}
}
if (hasNopass)
Console.WriteLine("有人不及格");
else
Console.WriteLine("都及格啦!");
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
//声明整型数组,保存一组整数
int[] num = new int[] { 3, 34, 42, 2, 11, 19, 30, 55, 20 };
//请完善代码,循环打印数组中的偶数
for (int i = 0; i < num.Length; i++)
if (num[i] % 2 == 0)
Console.Write(num[i] + ",");
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int[] score = new int[] { 89, 39, 100, 51, 94, 65, 70 };//分数
Console.Write("不及格的有:");
for (int i = 0; i <score.Length; i++)
{
if ( score[i]<60 )//筛选条件
Console.Write(score[i] + ",");
}
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
//请在这里完善代码
string[] names = { "关羽", "张飞", "赵云", "马超", "黄忠" };
for (int i=0; i<names.Length; i++)
{
Console.Write(names[i] + ",");
}
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
//声明“职位”数组,初始化为:"经理","项目主管","技术总监","财务主管"
string[] job = { "经理", "项目主管", "技术总监", "财务主管" };
for (int i = 0; i <job.Length ; i++)
{
Console.Write(job[i]);//打印职位
}
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int[] age = new int[4];//声明并初始化长度为4的整形数组
//为数组元素赋值
age[0] = 18;
age[1] = 20;
age[2] = 23;
age[3] = 17;
Console.WriteLine("四名同学的年龄是:{0}、{1}、{2}、{3}",
age[ 0], age[ 1], age[ 2], age[ 3]);
}
}
}
查看全部 -
switch 中的(变量)只能是3种类型:整型(如 int )、字符型( char )、字符串类型( string )
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;namespace Test
{
class Program
{
static void Main(string[] args)
{
double d = 2.5;
int x = (int)d + 1;
Console.WriteLine(x);
}
}
}答案 3
查看全部 -
假设a、b两个变量交换值,需要先声明一个中间变量temp,用temp临时存储其中变量a的值,再将变量b的值赋值给a,最后将temp赋值给b。
using System;
using System.Collections.Generic;
using System.Text;namespace Test
{
class Program
{
static void Main(string[] args)
{
string today;//今天的午饭
string tomorrow;//明天的午饭
today = "鱼香肉丝";
tomorrow = "小鸡炖蘑菇";
//请在这里补充代码,实现变量today和tomorrow的交换
string temp;
temp = today;
today = tomorrow;
tomorrow= temp;
//打印
Console.WriteLine("我今天吃{0},明天吃{1}。",today,tomorrow);
}
}
}查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <= 7; x++)
{
if(x==y || x+y==8)
Console.Write("O");
else
{
Console.Write(".");
}
}
Console.WriteLine();
}
}
}
}
查看全部
举报