2754基础解法(简短输出) 摘要:解题思路:类比2752,2753,理解使用sizeof函数即可注意事项:C语言(C99 之前)没有内置 bool 类型所以需要在头部添加声明#include <stdbool.h>参考代码…… 题解列表 2026年04月09日 1 点赞 0 评论 48 浏览 评分:10.0
2752基础解法(简短输出) 摘要:解题思路:题目:分别定义int,short类型的变量各一个,并依次输出它们的存储空间大小(单位:字节)。…… 题解列表 2026年04月09日 0 点赞 0 评论 53 浏览 评分:0.0
【Kirito】1084使用筛法进行筛选 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool Is_crossed_over[1000005];int ma…… 题解列表 2026年04月08日 0 点赞 0 评论 41 浏览 评分:0.0
冶炼金属C++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { long long int a[10005],…… 题解列表 2026年04月08日 0 点赞 0 评论 61 浏览 评分:0.0
【kirito】1030 注意输出格式 摘要:解题思路:#include<bits/stdc++.h>using namespace std;int main(){ int a[3][3]; for(int i=0;i<3;i+…… 题解列表 2026年04月08日 1 点赞 0 评论 71 浏览 评分:0.0
1470:时间转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t; scanf("%d",&t); int h,m,s; h=…… 题解列表 2026年04月08日 0 点赞 0 评论 32 浏览 评分:0.0
2781:奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char ch; scanf("%c",&ch); if(ch%2==1…… 题解列表 2026年04月08日 0 点赞 0 评论 49 浏览 评分:0.0
利用变换次数 摘要:解题思路:利用左支不变右支变注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intma…… 题解列表 2026年04月07日 0 点赞 0 评论 61 浏览 评分:0.0
没毛病,100%正确 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(Str…… 题解列表 2026年04月07日 0 点赞 0 评论 48 浏览 评分:0.0
没毛病,100%正确 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(Str…… 题解列表 2026年04月07日 0 点赞 0 评论 35 浏览 评分:0.0