摘要: https://www.cnblogs.com/bestsheng/p/5659932.html 阅读全文
posted @ 2021-11-30 08:19 南天北云 阅读(13) 评论(0) 推荐(0)
摘要: 洛谷P1303 P1303 A*B Problem - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) 方法:数组模拟 1 //#include <bits/stdc++.h> 2 #include <iostream> 3 #include <cstdio> 4 #include < 阅读全文
posted @ 2021-10-30 20:06 南天北云 阅读(40) 评论(0) 推荐(0)
摘要: 需要找到Wev.config文件添加如下代码 <configuration> <appSettings> <add key="ValidationSettings:UnobtrusiveValidationMode" value ="None" ></add> </appSettings> </co 阅读全文
posted @ 2021-10-12 19:48 南天北云 阅读(29) 评论(0) 推荐(0)
摘要: 链接:https://ac.nowcoder.com/acm/problem/14310来源:牛客网 题目描述 输入一个字符串,长度在100以内,按相反次序输出其中的所有字符。 输入描述: 输入一个字符串 输出描述: 输出反序的字符串 示例1 输入 复制 tsinghua tsinghua 输出 复 阅读全文
posted @ 2021-07-03 09:51 南天北云 阅读(87) 评论(0) 推荐(0)
摘要: hide handkerchiefTime Limit: 10000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 5252 Accepted Submission(s): 24 阅读全文
posted @ 2021-04-07 21:40 南天北云 阅读(116) 评论(0) 推荐(0)
摘要: 救救孩子吧!(呜呜大哭) 抄了三遍,还是不懂,哪个路过的哥哥姐姐教教俺(手动捂脸)。 1 #include <iostream> 2 #include <string> 3 #include <cstring> 4 #include <cctype> 5 using namespace std; 6 阅读全文
posted @ 2021-04-05 10:57 南天北云 阅读(106) 评论(0) 推荐(0)
摘要: 要着请吃饭了!(手动捂脸) 将十六进制转换为十进制特例: AB转换为dec: 0xAB = 0xoA * 16 + 0x0B = 10 * 16 + 11 =171 十六与八(C) scanf ("%x %x", &x, &y); scanf ("%o %o", &x, &y); C++: cin 阅读全文
posted @ 2021-04-01 21:32 南天北云 阅读(98) 评论(0) 推荐(0)
摘要: 这题是我过不去呢还是跟我过不去呢? 结果没有毛病 但就是出现 Wrong Answer 源码如下: 1 #include <iostream> // Wrong Answer 2 #include <cmath> 3 #include <stdio.h> 4 using namespace std; 阅读全文
posted @ 2021-04-01 10:04 南天北云 阅读(55) 评论(0) 推荐(0)
摘要: 注意读题,是给一段连续的整数,而不是两个整数啊啊啊!!! 1 #include <iostream> 2 3 using namespace std; 4 5 int main() { 6 int x, y, m, n; 7 8 while (cin >> m >> n) { 9 x = y = 0 阅读全文
posted @ 2021-04-01 08:09 南天北云 阅读(101) 评论(0) 推荐(0)
摘要: 这家伙,小白深深的记住啦~! 1 #include <iostream> 2 #include <cstdio> 3 using namespace std; 4 5 int main() { 6 int y, m, d; 7 int r[12] = {31, 0, 31, 30, 31, 30, 阅读全文
posted @ 2021-03-29 21:07 南天北云 阅读(45) 评论(0) 推荐(0)