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;
x++;
Console.WriteLine((int)x>y);
}
}
}
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
double x = 3.5;
int y = 3;
x++;
Console.WriteLine((int)x>y);
}
}
}
2019-02-07
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
Console.Write(666);
}
}
}
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
Console.Write(666);
}
}
}
2019-01-30
最赞回答 / 棋圣丶龙骑士
你的代码是对的,输出结果中间的逗号,老师是英文的,你是中文的。另外,max并没有比较数组的最高分。这个代码是定义了一个int类型的变量max,来存储最高的分数,实际上,把max的定义和赋值删除掉,程序照样是对的。你只需要把最大的分数对应在数组的位置记录给k,然后输出两个数组中第k个元组就行了。参照下面代码:using System;using System.Collections.Generic;using System.Text;namespace projGetMaxScore{ class P...
2019-01-22
闰年定义是可以被4整除,不能被100整除,但是被400整除可以啊
int year = 2015;//年份
bool answer;
string text;
answer = (year % 4 == 0 && year % 100 != 0)|year%400==0;
text = answer == true ? ("闰年" ): text =( "平年");
Console.WriteLine("今年是{0}", text);
int year = 2015;//年份
bool answer;
string text;
answer = (year % 4 == 0 && year % 100 != 0)|year%400==0;
text = answer == true ? ("闰年" ): text =( "平年");
Console.WriteLine("今年是{0}", text);
2019-01-13