编写题解 2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a,b; int i=0,j=0; scanf("%d %d %d",&n,&a,&b); /…… 题解列表 2022年10月22日 0 点赞 0 评论 299 浏览 评分:9.7
同行列对角线的格子(C语言代码) 摘要:```c #include /*------------------------------*/ void S_line(int n, int x, int y)//从左到右输出同一行格子位置 …… 题解列表 2022年11月01日 0 点赞 0 评论 671 浏览 评分:9.9
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,g; scanf("%d %d %d",&n,&m,&g); for(int i=0…… 题解列表 2022年11月13日 0 点赞 0 评论 123 浏览 评分:0.0
废物新人的笨方法 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include<math.h> int main(){ int n,i,j; scanf("%d%d%d",&n,&i,&j); fo…… 题解列表 2022年12月01日 0 点赞 0 评论 312 浏览 评分:6.0
2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d", &n);//n*n int i, j; scanf("%d %d", …… 题解列表 2023年01月28日 0 点赞 0 评论 121 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ //同行列对角线的格子 int n; scanf("%d", &n);//n*n形式的矩阵(从1开始) i…… 题解列表 2023年01月28日 0 点赞 0 评论 271 浏览 评分:0.0
求对角线格子问题_注释版 摘要:```cpp //#include #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #inclu…… 题解列表 2023年03月10日 0 点赞 0 评论 133 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:从左上到右下(先找到最左下的元素,利用while循环,以此往下输出),左下到右上同理。。。利用tx、ty、rx、ry保存x、y的值,从而找到左下或右上的第一个元素。注意事项:参考代码:#in…… 题解列表 2023年04月23日 0 点赞 0 评论 200 浏览 评分:0.0
要有找规律 的倾向懂得寻找规律,简化思维 摘要:解题思路:下面两点就是要找规律,数感也还是很重要的,语感数感理解能力注意事项:参考代码:'''输入三个自然数N,i,j (1<=i<=N,1<=j<=N),输出在一个N*N格的…… 题解列表 2023年05月06日 0 点赞 0 评论 191 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年05月17日 0 点赞 0 评论 163 浏览 评分:9.0