Aυτές τις μέρες προσπαθώ να μάθω γλώσσα προγραμματισμού C.
Ακολουθούν τρία απλά προγραμματάκια σε γλώσσα C.
/*Το πρόγραμμα υπολογίζει το εμβαδό ορθογωνίου */
#include stdio.h
#include stdlib.h
main()
{
float x, y;
printf("Dose tin basi: ");
scanf("%f", &x);
printf("Dose to ypsos: ");
scanf("%f", &y);
printf("Embadon orthogoniou: %f", x*y);
system("pause");
}
#include stdio.h
#include stdlib.h
main()
{
float x, y;
printf("Dose tin basi: ");
scanf("%f", &x);
printf("Dose to ypsos: ");
scanf("%f", &y);
printf("Embadon orthogoniou: %f", x*y);
system("pause");
}
/* Το πρόγραμμα υπολογίζει το πλήθος των seconds ενός χρόνου */
#include stdio.h
#include stdlib.h
int main (void)
{
int days, hours, seconds;
printf ("how many days have a year:");
scanf ("%d", &days);
printf ("how many hours have a day:");
scanf ("%d", &hours);
printf ("how many seconds have an hour:");
scanf ("%d", &seconds);
printf ("the numder of seconds in a year is %d", days*hours*seconds);
system ("pause");
return 0;
}
/*Το πρόγραμμα υπολογίζει τον όγκο ενός κύβου */
#include stdio.h
#include stdlib.h
int main (void)
{
int a;
printf ("Enter a: ");
scanf ("%d",&a);
printf (" volume is %d", a*a*a);
system ("pause");
return 0;
}
ΚΑΛΗ ΕΒΔΟΜΑΔΑ.
ΑπάντησηΔιαγραφήΣε ευχαριστώ καλή εβδομάδα!
ΑπάντησηΔιαγραφή