The site is loading…

Áttértünk a C-re.
A jegyzet: https://docs.google.com/document/d/1vAZ-p2yapQcnIQUr_0WKtGQxz0lb7pI6yB6-Z2qkT4c/edit

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. int main(int AGC, char * ARGV[]){
  5. char s1[20]; char s[200]; int egy;
  6. strcpy(s," ");
  7. do{
  8. printf("Kerem a szovegeket: ");
  9. scanf("%s", &s1);
  10. egy=strcmp(s1, "vege");
  11. if(egy!=0){
  12. strcat(s,s1);
  13. }
  14. } while (egy!=0);
  15. printf("Az osszemasolt szoveg: %sn", s);
  16. return 0;
  17. }
#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;
}

Leave a Reply