Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
nombre_completo
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
//fpc 3.0.0 program nombre_completo; var nom, ap, completo: string; i_nom, i_ap, iniciales : string; largo : integer; begin readln(nom); readln(ap); largo := length(ap); completo := nom + ap; writeln(completo); writeln('su apellido tiene ',largo,' letras'); i_nom := copy(nom,1,1); i_ap := copy(ap,1,1); iniciales := i_nom + i_ap; writeln('sus iniciales son ',iniciales); end.
juan perez
Show compiler warnings
[
-
]
Show input
Compilation time: 0.12 sec, absolute running time: 0.11 sec, cpu time: 0.04 sec, memory peak: 3 Mb, absolute service time: 0,32 sec
edit mode
|
history
|
discussion
juan perez su apellido tiene 5 letras sus iniciales son jp