牛客375948843号
牛客375948843号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客375948843号的博客
全部文章
(共35篇)
题解 | #开学?#
#include <iostream> using namespace std; int main() { int a = 0 ,b = 0; cin >> a >> b; if ((a + b) < 7) { co...
2024-08-23
0
82
题解 | #整数的十位#
public class Program { public static void Main() { string s = System.Console.ReadLine(); System.Console.WriteLine(s[s.Length-2]); ...
2024-08-23
0
101
题解 | #整数的个位#
public class Program { public static void Main() { string s = System.Console.ReadLine(); System.Console.WriteLine(s[s.Length-1]); ...
2024-08-23
0
71
题解 | #计算带余除法#
public class Program { public static void Main() { string[] s = System.Console.ReadLine().Split(" "); System.Console.Wri...
2024-08-23
0
81
题解 | #浮点数的个位数字#
public class Program { public static void Main() { string[] s = System.Console.ReadLine().Split("."); System.Console.Wri...
2024-08-23
0
80
题解 | #进制A+B#
public class Program { public static void Main() { string[] s = System.Console.ReadLine().Split(" "); System.Console.Wri...
2024-08-23
0
75
题解 | #牛牛的对齐#
C#是支持格式指定符的,将其统一左对齐,能完成题目要求 public class Program { public static void Main() { string[] s = System.Console.ReadLine().Split(" ")...
2024-08-22
0
108
题解 | #牛牛的空格分隔#
包含了对异常产生的检测和原因说明 using System; public class Program { public static void Main() { String[] s = new String[3]; int i = 0; ...
2024-08-21
0
101
题解 | #按照格式输入并交换输出#
public class Program { public static void Main() { string[] s = System.Console.ReadLine().Split(","); s[0] = s[0].Replac...
2024-08-19
0
107
题解 | #出生日期输入输出#
public class Program { public static void Main() { string s = System.Console.ReadLine(); System.Console.WriteLine("year="...
2024-08-17
0
77
首页
上一页
1
2
3
4
下一页
末页