Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Nieparzyste w macierzy
Language:
Ada
Assembly
Bash
C#
C++ (gcc)
C++ (clang)
C++ (vc++)
C (gcc)
C (clang)
C (vc)
Client Side
Clojure
Common Lisp
D
Elixir
Erlang
F#
Fortran
Go
Haskell
Java
Javascript
Kotlin
Lua
MySql
Node.js
Ocaml
Octave
Objective-C
Oracle
Pascal
Perl
Php
PostgreSQL
Prolog
Python
Python 3
R
Rust
Ruby
Scala
Scheme
Sql Server
Swift
Tcl
Visual Basic
Layout:
Vertical
Horizontal
#include <iostream> using namespace std; int d,m,n,x,s; int main() { cin>>d; for(int g=0;g<d;g++) { cin>>n>>m; for(int j=1;j<=n;j++) { for(int i=1;i<=m;i++) { cin>>x; if(x%2!=0) { cout<<x<<" "<<"("<<i<<","<<j<<")"<<endl; } } } } }
g++
2 2 3 1 2 3 4 5 6 3 2 -1 9 3 -1 8 2
Show compiler warnings
[
+
] Compiler args
[
-
]
Show input
Compilation time: 0.43 sec, absolute running time: 0.12 sec, cpu time: 0.06 sec, memory peak: 3 Mb, absolute service time: 0,56 sec
edit mode
|
history
|
discussion
1 (1,1) 3 (3,1) 5 (2,2) -1 (1,1) 9 (2,1) 3 (1,2) -1 (2,2)