牛客480841523号
牛客480841523号
全部文章
分类
题解(7)
归档
标签
去牛客网
登录
/
注册
牛客480841523号的博客
全部文章
(共7篇)
题解 | 真的傻啊,直接乘,什么六位小数,我就直接算#挑7#
using System; using System.Collections.Generic; public class Program { public static void Main() { string line; while ((line = Console.ReadLine()) != ...
C#
2021-11-03
0
357
题解 找规律的题目可以多算算几组数据,看多了就能看出规律| #统计每个月兔子的总数#
using System; using System.Collections.Generic; class ErJingZhi { static void Main() { string S; while ((S = Console.ReadLine...
C#
2021-11-02
0
393
题解 我吐了,一定要注意结尾是有空集的!!| #记负均正#
using System; using System.Collections.Generic; class JiFu { static void Main() { string GeShu1 ; while (( GeShu1 = Console.R...
C#
字符串
2021-11-01
0
381
题解 1900年不是闰年!| #计算日期到天数转换#
1、非整百年份:能被4整除的是闰年。(如2004年就是闰年,2001年不是闰年) 2、整百年份:能被400整除的是闰年。(如2000年是闰年,1900年不是闰年) 3、对于数值很大的年份:如果这一年能被3200整除,那么这一年不是闰年,但如果这一年能被172800整除,则为闰年。如172800年是闰...
2021-11-01
0
497
题解 c#多个事例输入判断 | #合法IP#
using System; using System.Collections.Generic; namespace HuaWeiTest { class Pongam { static void Main(string[] arge) { ...
C#
字符串
2021-10-31
0
428
题解 c#不能缺席| #字符个数统计#
using System; using System.Collections.Generic; class Buchongfu { static void Main() { Dictionary<int, char> Dic = new Dictiona...
C#
哈希表
2021-10-31
1
282
题解 | #求int型正整数在内存中存储时1的个数#
using System; public class Program { public static void Main() { int Input = int.Parse(Console.ReadLine()); int Wind = 2; ...
C#
2021-10-28
0
358