题解 2701 取模C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> in…… 题解列表 2024年04月08日 1 点赞 0 评论 96 浏览 评分:0.0
蓝桥杯2022年第十三届决赛真题-取模(C/C++/Java组) 摘要:解题思路:简单暴力注意事项:用scanf能过,cin过不了参考代码:#include<iostream>#include<unordered_map>using namespace std;int t…… 题解列表 2023年06月01日 0 点赞 1 评论 277 浏览 评分:9.9
一种可借鉴的麻烦方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int t, n, m, i, j, x, y; scanf("%d",&t); for(…… 题解列表 2023年04月01日 0 点赞 0 评论 187 浏览 评分:8.0
取模(C语言版本) 摘要: 话不多说直接上代码 #include int main() { int n,m,b; scanf("%d",&b); int i; int j; wh…… 题解列表 2023年03月29日 0 点赞 0 评论 595 浏览 评分:9.9