babadinding
Cadet 2nd Year
- Registriert
- Apr. 2015
- Beiträge
- 16
hello
kann jemanden mir sagen woran liegt der ausgabe so ist:
bitte geben sie wort1 ein:hello
hello
bitte geben sie wort2 ein:world
world
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main (){
char wort1[71], wort2[11], wort3[71];
int i, x,j;
printf("bitte geben sie wort1 ein:");
fgets(wort1,71,stdin);
printf("%s", wort1);
printf("bitte geben sie wort2 ein:");
fgets(wort2,11,stdin);
printf("%s\n", wort2);
for(i=0; i<=strlen(wort1); i++){
for(x=0; x<=strlen(wort2); x++){
if(wort1 != wort2[x]){
for(j=0; j<=71; j++){
wort3[j];
}
printf("%c",wort3[j]);
}
}
}
return 0;}
kann jemanden mir sagen woran liegt der ausgabe so ist:
bitte geben sie wort1 ein:hello
hello
bitte geben sie wort2 ein:world
world
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main (){
char wort1[71], wort2[11], wort3[71];
int i, x,j;
printf("bitte geben sie wort1 ein:");
fgets(wort1,71,stdin);
printf("%s", wort1);
printf("bitte geben sie wort2 ein:");
fgets(wort2,11,stdin);
printf("%s\n", wort2);
for(i=0; i<=strlen(wort1); i++){
for(x=0; x<=strlen(wort2); x++){
if(wort1 != wort2[x]){
for(j=0; j<=71; j++){
wort3[j];
}
printf("%c",wort3[j]);
}
}
}
return 0;}
Zuletzt bearbeitet von einem Moderator: