napisz program który zamienia podany na wejściu Ciąg znaków w następujący sposób
wejście
InForMatyKA
wyjście
INFORMATYKA
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Nie określiłeś jezyka to napisałem sobie w C:
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main(void)
{
char text[256];
int i,n;
// Wczytaj napis
scanf("%s",text);
// Okresl dlugosc tekstu
n = strlen(text);
// Zamien wszystkie znaki na upper-case
for(i=0;i<n;++i)
text[i] = toupper(text[i]);
// Wyswietlc
printf("%s\n",text);
return 0;
}