Áttértünk a C-re.
A jegyzet: https://docs.google.com/document/d/1vAZ-p2yapQcnIQUr_0WKtGQxz0lb7pI6yB6-Z2qkT4c/edit
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int AGC, char * ARGV[]){
char s1[20]; char s[200]; int egy;
strcpy(s," ");
do{
printf("Kerem a szovegeket: ");
scanf("%s", &s1);
egy=strcmp(s1, "vege");
if(egy!=0){
strcat(s,s1);
}
} while (egy!=0);
printf("Az osszemasolt szoveg: %sn", s);
return 0;
}
#include <stdio.h> #include <stdlib.h> #include <string.h> int main(int AGC, char * ARGV[]){ char s1[20]; char s[200]; int egy; char ch[2]; int db=0; strcpy(s," "); printf("Kerem a vizsgalando szoveget: "); gets(ch); do{ printf("Kerem a szovegeket: "); scanf("%s", &s1); egy=strcmp(s1, "vege"); if(egy!=0){ strcat(s,s1); } if(s1[0]==ch[0]){ db=db+1; } } while (egy!=0); // printf("Az osszemasolt szoveg: %sn", s); printf("A keresett elemek szama: %dn", db); return 0; }