题解列表
分类讨论 一步一步讨论
摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n): ans=8 a=list(map(int,input().split())) b=[a……
矩阵交换行c++题解
摘要:解题思路:按吧按吧按吧按吧按吧按吧按吧按吧按吧注意事项:啥也没有参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[6]……
编写题解 3000: 交换值
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a , b,c; scanf("%d %d",&a,&b); c=a; a=b;……
编写题解 1812: [编程基础]输入输出练习之输出图案
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c; c= getchar(); printf(" %c\n",c); pri……
编写题解 2998: 电影票
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n……
求矩阵的两对角线上的元素之和python
摘要:解题思路:注意事项:参考代码:n = int(input())L = []s = 0for i in range(n): L.append(list(map(int,input().split(……