Milan Stephan
Fotografie & IT

Zurück zur SP2 Übersicht

t02-ul.c

#include <stdio.h>
#include <stdlib.h>

int main(void) {

	int c = getchar();

	if (c == 'l') {

		while (1) {
			int x = getchar();
			if (x == EOF) return 0;

			if (x >= 'A' && x <= 'Z') {
				x += 32;
			}
			printf("%c", x);
		}
	}

	if (c == 'u') {

		while (1) {
			int x = getchar();
			if (x == EOF) return 0;

			if (x >= 'a' && x <= 'z') {
				x -= 32;
			}
			printf("%c", x);
		}
	}
}