Σε αυτές τις ασκήσεις, βλέπουμε την λειτουργία και την δομή των εντολών: "strlen()", "gets()", "toupper()" και "strcat". Δίνεται πάλι ο κώδικας και η εικόνα με το αποτέλεσμα του κώδικα.
Άσκηση 1
#include <string.h>
int main()
{
char A[20];
int x;
printf("Dwse to onoma sou: \n");
gets_s(A);
x = strlen(A);
printf("Onoma: %s \nAri8mos xarakthrwn: %d \n", A, x);
system("Pause");
return 0;
}
Άσκηση 2
#include<iostream>
#include <string.h>
#include <ctype.h>
int main()
{
char A[20];
int i, x;
printf("Dwse to epitheto sou: \n");
gets_s(A);
x = strlen(A);
for (i = 0; i <= x; i++)
{
printf("%c", toupper(A[i]));
}
printf("\n");
system("Pause");
return 0;
}
Άσκηση 3
#include<iostream>
#include <string.h>
#include <ctype.h>
int main()
{
char A[40];
char B[20];
int i, x, y;
printf("Dwse to onoma sou: \n");
gets_s(A);
printf("Dwse to epitheto sou: \n");
gets_s(B);
A[0] = toupper(A[0]);
B[0] = toupper(B[0]);
strcat_s(A, " ");
strcat_s(A, B);
puts(A);
printf("\n");
system("Pause");
return 0;
}
Δεν υπάρχουν σχόλια:
Δημοσίευση σχολίου