-
两个数相除或相乘得到的数与精确度最高的类型一样
查看全部 -
char 字符类型 储存用单引号
string 字符串类 储存用双引号
查看全部 -
给字符串变量赋值的时候需要加上""号双引号
查看全部 -
程序没有给出,直接判断运行结果吗
查看全部 -
using System;using System.Collections.Generic;using System.Text;namespace projGetMaxScore{ class Program { static void Main(string[] args) { string[] names = new string[] {"吴松","钱东宇","伏晨","陈陆", "周蕊","林日鹏","何昆","关欣"}; int[] scores = new int[] {89,90,98,56,60,91,93,85}; int max = 0; int index = 0; for(int i = 0;i<scores.Length;i++) { if(scores[i] > max) { max = scores[i]; index = i; } } Console.WriteLine("分数最高的是{0},分数是{1}",names[index],max); } }}
查看全部 -
1111111
查看全部 -
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int age = 4;//年龄
if (age < 6 || age > 60)
Console.WriteLine("请坐爱心座!");
else
Console.WriteLine("请坚持一下!");
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(true || false);//输出True
Console.WriteLine(true && false);//输出False
Console.WriteLine(!false);//输出True
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
double x = 3.5;
int y = 3;
Console.WriteLine((int)x == y);
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int x = 5;
int y = 5;
int z = 5;
x++;
Console.Write(x);
Console.Write(++y);
Console.Write(++z);
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int year = 2015;//年份
Console.WriteLine(year%4);//求年份除以4的余数
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
double salary = 6000.00;//基本工资
double prize = 3200.00;//奖金
double tax = 4500.00;//交税
Console.Write("我的工资奖金总额是{0}元", salary+ prize);
Console.Write("我的税后收入是{0}元", salary+ prize- tax);
}
}
}
查看全部 -
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int _num1 = 5;//第一个加数
int _num2 = 7;//第二个加数
int sum=_num1+_num2;//求和
Console.WriteLine("和是{0}",sum);//打印结果
}
}
}
查看全部 -
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);
}
}
}
查看全部 -
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);
}
}
}
查看全部
举报