主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
潇风青禾
2024年4月3日 11:32
矩阵位置 题解:
P1543
回复 0
|
赞 0
|
浏览 457
#include<bits/stdc++.h> using namespace std; int main(){ int n; int row; int col; while(cin >> n){ if(n%3==0) row = n / 3; else row = n / 3 + 1; col = n - (row-1) * 3; cout << row << " " << col << endl; } return 0; } ...
光明守护神
2024年3月17日 19:22
C++
P1543
回复 0
|
赞 0
|
浏览 496
#include<iostream> #include<string> using namespace std; int main() { int n; while (cin >> n) { switch (n) { case 1: cout << 1 << " " << 1 << endl; break; case 2: cout << 1 << " " << 2 << endl;...
小李122333
2024年3月3日 15:30
矩阵位置 题解:
P1543
回复 0
|
赞 0
|
浏览 507
#include using namespace std; #include <bits/stdc++.h> using namespace std; int main(){ int n; int i,j; while(cin>>n){ j = n%3; if(j==0){ i = n/3; j=3; }else{ i = n/3 + 1; } cout<<i<<" "<<j<<endl; } r...
Syou
2023年8月17日 12:41
矩阵位置 题解:
P1543
回复 0
|
赞 0
|
浏览 969
C++ #include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; int main(){ int n; int hang, lie; while(cin >> n){ hang = (n - 1) / 3 + 1; lie = (n - 1) % 3 + 1; cout << hang << " " << l...
SKYBQL
2021年8月27日 21:39
矩阵位置
P1543
回复 0
|
赞 1
|
浏览 5.7k
#include int main() { int n; int i,j; while(scanf("%d",&n)!=EOF) { i=n/3; if(n%3!=0) i++; &n...
题目
矩阵位置
题解数量
5
发布题解
热门题解
1
矩阵位置
2
矩阵位置 题解:
3
C++
4
矩阵位置 题解:
5
矩阵位置 题解: