编写题解 1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> void count(char* str){ …… 题解列表 2024年05月29日 0 点赞 0 评论 626 浏览 评分:0.0
10845 A+B(1)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long a,b; while(scanf("%lld%lld",&a,&b)!=EOF) { pr…… 题解列表 2024年05月29日 0 点赞 1 评论 491 浏览 评分:0.0
1086A+B(2)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); long long a,b; while(n) { scanf(…… 题解列表 2024年05月29日 0 点赞 0 评论 530 浏览 评分:0.0
1087A+B(3)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long a,b; while(scanf("%lld%lld",&a,&b)) { if(a==0…… 题解列表 2024年05月29日 0 点赞 0 评论 237 浏览 评分:0.0
1088A+B(4)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; while(scanf("%d",&n)&&n!=0) { long long arr[n]; …… 题解列表 2024年05月29日 0 点赞 0 评论 196 浏览 评分:0.0
1089A+B(5)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); while(n!=0) { int m; scanf("%d"…… 题解列表 2024年05月29日 0 点赞 0 评论 198 浏览 评分:0.0
1090A+B(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; while(scanf("%d",&n)!=EOF) { long long arr[n]; …… 题解列表 2024年05月29日 0 点赞 0 评论 411 浏览 评分:0.0
1091A+B(7)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long a,b; while(scanf("%lld%lld",&a,&b)!=EOF) { pr…… 题解列表 2024年05月29日 0 点赞 0 评论 260 浏览 评分:0.0
1092A+B(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); while(n) { int sum=0; …… 题解列表 2024年05月29日 0 点赞 0 评论 217 浏览 评分:0.0
BFS模版题(很模版) 摘要: ```cpp #include using namespace std; typedef pair PII; const int N=1000; int n,end_day; c…… 题解列表 2024年05月30日 0 点赞 0 评论 231 浏览 评分:0.0