编写题解 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 评论 311 浏览 评分: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
同行列对角线的格子 摘要:解题思路:从左上到右下(先找到最左下的元素,利用while循环,以此往下输出),左下到右上同理。。。利用tx、ty、rx、ry保存x、y的值,从而找到左下或右上的第一个元素。注意事项:参考代码:#in…… 题解列表 2023年04月23日 0 点赞 0 评论 200 浏览 评分:0.0
2877: 同行列对角线的格子(有点麻烦,但非常好使) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std ; int a[100][100] ; int b[100][100] ;…… 题解列表 2023年07月18日 0 点赞 0 评论 441 浏览 评分:9.9
2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,a,b; cin>>n…… 题解列表 2023年07月21日 0 点赞 0 评论 117 浏览 评分:0.0
优质题解 同行列对角线的格子(不明白怎么把这题放到多维数组题集来的,可以通过给的格子坐标,得出左上对角线起点和左下对角线起点) 摘要:解题思路:从左到右输出和从上到小输出就不用多说了,说一下求对角线起点:先设两变量分别赋值给的格子的行,列,就设a,b吧求左上起点的话:a和b都自减,底线为大于1,也就是当a或b等于1时,此时(a,b)…… 题解列表 2023年10月26日 0 点赞 0 评论 463 浏览 评分:8.0