2794:Hello, World! 摘要:解题思路: 直接输出Hello, World!即可。参考代码:#include<iostream>using namespace std;int main(){ cout<<"Hello, W…… 题解列表 2023年01月13日 0 点赞 0 评论 501 浏览 评分:7.3
分段函数(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fun(double x){ if(x>=0 && x<5) { return -…… 题解列表 2023年01月14日 0 点赞 0 评论 489 浏览 评分:7.3
1130一行解(Python) 摘要:解题思路:用内置函数解决问题,站在巨人的肩膀上不用再造轮子了注意事项:filter()用于筛选符合条件的对象元素,在Python中若为判断条件为True,则添加入filter类型中,用list类型打印…… 题解列表 2023年01月15日 0 点赞 0 评论 552 浏览 评分:7.3
2847: 找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[100000] = {0}; int …… 题解列表 2023年01月17日 0 点赞 0 评论 689 浏览 评分:7.3
2963: Tomorrow never knows? 摘要:输入的时候‘-’可以用getchar直接屏蔽掉 ```cpp #include #include using namespace std; bool IsLeapYear(int year)…… 题解列表 2023年01月29日 0 点赞 0 评论 451 浏览 评分:7.3
3022: 流感传染(易理解)C语言 摘要:注意事项:见下代码参考代码:#include<stdio.h> int f(char a[100][100],int i,int j)//看每个'.'附近有没有'@'…… 题解列表 2023年01月30日 1 点赞 0 评论 636 浏览 评分:7.3
1246: 第几天 摘要:```cpp #include using namespace std; int arr[12]={31,28,31,30,31,30,31,31,30,31,30,31},sum=0; in…… 题解列表 2023年02月01日 0 点赞 0 评论 866 浏览 评分:7.3
1866: 三位数反转(Python) 摘要:解题思路:注意事项:参考代码:while True: try: n = input() m = n[::-1]   题解列表 2023年02月10日 0 点赞 2 评论 853 浏览 评分:7.3
小试牛刀!!!!!!!!!! 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] args)…… 题解列表 2023年02月19日 0 点赞 0 评论 681 浏览 评分:7.3
分解因数(暴搜) 摘要:解题思路:暴力搜索,满足条件则方案+1 参考代码: ```cpp #include using namespace std; #define ll long long const int …… 题解列表 2023年02月21日 0 点赞 3 评论 655 浏览 评分:7.3