Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151067 张锦程 输出第i行第j列 C++ Accepted 0 MS 276 KB 173 2026-04-04 15:14:56

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int n[3][4]={1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23},i,j; cin>>i>>j; cout<<n[i][j]; return 0; }