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
同行列对角线的格子 摘要:解题思路:从左上到右下(先找到最左下的元素,利用while循环,以此往下输出),左下到右上同理。。。利用tx、ty、rx、ry保存x、y的值,从而找到左下或右上的第一个元素。注意事项:参考代码:#in…… 题解列表 2023年04月23日 0 点赞 0 评论 200 浏览 评分:0.0
感谢题解的启发,想了半天了都 摘要:解题思路:注意事项:参考代码:n,i,j=map(int,input().split())for q in range(1,n+1): print(f"({i},{q})",end=" ")pr…… 题解列表 2024年07月31日 0 点赞 0 评论 110 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#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
题解 2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,c; scanf("%d%d%d",&n,&i,&j); for(int …… 题解列表 2024年04月20日 0 点赞 0 评论 148 浏览 评分:0.0
同行列对角线的格子(C语言) 摘要:#####注意事项: **1、利用while循环找规律时要注意括号里面应不应该取等号 2、每一行输出完之后要单独输出一个换行符** ###### 代码块如下: ```c #include …… 题解列表 2024年08月05日 0 点赞 0 评论 170 浏览 评分:0.0
题解 2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e3+5; //此行可以删去int main(){ …… 题解列表 2024年06月09日 0 点赞 0 评论 54 浏览 评分:0.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 评论 119 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:感觉计算机更适合做完再去筛选掉不合理的解注意事项:参考代码:put=list(map(int,input().strip().split()))a=b=c=d=''for j…… 题解列表 2025年01月21日 0 点赞 0 评论 43 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class test2877 { public static void main(String[] arg…… 题解列表 2023年11月15日 0 点赞 0 评论 150 浏览 评分:0.0