Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
#31
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> void zakres( int x, int y ) { while (x <= y) { std::cout << x << ", "; x++; } std::cout << "koniec" << std::endl; } int main() { zakres( 1, 5 ); zakres( 8, - 1 ); zakres( 10, 10 ); return 0; }
cl.exe
Show compiler warnings
[
+
] Compiler args
[
+
]
Show input
Compilation time: 1.48 sec, absolute running time: 0.05 sec, absolute service time: 1.54 sec
edit mode
|
history
|
discussion
1, 2, 3, 4, 5, koniec koniec 10, koniec