Browse Source

Umgebung

remotes/origin/fdai7402-main-patch-42180
fdai7225 2 years ago
parent
commit
f2ef9d2f84
  1. 35
      src/Umgebung.c

35
src/Umgebung.c

@ -0,0 +1,35 @@
#include<stdio.h>
#include<string.h>
#define N 40
void Umgebung(char str[N][N]);
void Palindrom(char str[N]);
int main(){
char str[N][N];
Umgebung(str);
}
void Palindrom(char str[N]){
char str1[strlen(str)];
printf("bitte geben Sie Wort ein:\n");
scanf("%s",str);
printf("\n");
strncpy(str1,str,strlen(str));
for(int i=0;i<strlen(str);i++){
str[i]=str1[strlen(str)-(i+1)];
}
}
void Umgebung(char str[N][N]){
for (int i=0;i<=N;i++){
for(int j=0;j<=N;j++){
if((i==0)||(j==0)||(i==N)||(j==N)){
str[i][j]= '+';
printf("%c",str[i][j]);}
else {str[i][j]= ' ';
printf("%c",str[i][j]);}
}
printf("\n");
}
}
Loading…
Cancel
Save