Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
AVANCE PREGUNTA 10 DE CADENAS
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 <stdio.h> #include <string.h> int main(void) { unsigned short N; // 'N' representa la cantidad de casos de pruebas. unsigned short i; unsigned short cantidad; char nombres[1501]; char nombre[11]; scanf("%hu\n", &N); for (i = 0 ; i < N ; i++) { scanf("%1500[^\n]s", nombres); getchar(); char *puntero = nombres; if ((puntero = strchr(nombres,' ')) != NULL) { strcpy(nombre,"\0"); strncat(nombre, nombres, puntero - nombres); puntero ++; strcpy(nombres, puntero); } //printf("nombre: %s\n", nombre); //printf("nombres: %s\n", nombres); // Proceso para verificar si el nombre se repite más de una vez en los nombres mencionados por las abuelitas :) . cantidad = 0; puntero = nombres; while ( (puntero = strstr(puntero, nombre)) != NULL) { cantidad ++; puntero ++; } //printf("Cantidad de %s: %hu\n", nombre, cantidad); if (cantidad > 1) printf("FALSA\n"); else { puntero = nombres; puntero = strrchr(nombres,' '); puntero ++; //1printf("puntero: %s\n", puntero); if (strcmp(nombre,puntero) == 0) printf("VERDADERA\n"); else printf("FALSA\n"); } } return 0; }
gcc
3 andrea 4 pedro luis andrea ana juan 4 juan maria pedro juan rafael 5 ana maria rafael juan rafael
Show compiler warnings
[
+
] Compiler args
[
-
]
Show input
Compilation time: 0.12 sec, absolute running time: 0.12 sec, cpu time: 0.05 sec, memory peak: 3 Mb, absolute service time: 0,32 sec
edit mode
|
history
|
discussion
FALSA FALSA FALSA