Edgar SIMO-SERRA
double
)if (CONDITIONAL1) {
do_something();
} else if (CONDITIONAL2) {
do_something_else();
} else {
do_something_completely_different();
}
a==b
: a is equal to bea!=b
: a is not equal to ba<b
: a is smaller than ba>b
: a is bigger than ba<=b
: a is smaller or equal to ba>=b
: a is bigger or equal to bint my_grade = 70;
if (my_grade < 50) {
printf( "failed the class\n" );
} else if (my_grade <= 99) {
printf( "passed the class\n" );
} else if (my_grade == 100) {
printf( "got an A+!\n" );
}
=
and ==
!c
: not condition ca && b
: condition a and condition ba || b
: condition a or condition bint temperature = 30;
int rain = 1;
if ((rain==1) || (temperature < 20)) {
wear_sweater();
} else if ((temperature > 30) && (rain==0)) {
wear_tshirt();
} else {
wear_random();
}
int my_variable = 3;
switch (my_variable) {
case 1:
do_something(); break;
case 3:
do_something_else(); break;
default:
do_nothing(); break;
}
#include <stdio.h>
int main (void) {
/* Put code here. */
return 0;
}
ax2+bx+c=0
b2−4ac=0
b2−4ac<0
x=−b±√b2−4ac2a
#include <stdio.h>
#include <math.h>
int main (void)
{
/* Code missing. You can calculate the square root with "sqrt( double )" */
return 0;
}
-lm
when compiling with gcc-W -Wall -Wextra -Wconversion
3x2+3x+3=0
has no real solutions2x2+4x+2=0
has one solutions x=−1
2x2+4x+1=0
has two solutions x=−1.7071
and x=−0.29289
pick_card()
).#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int pick_card (void) { return (rand()%10)+1; }
int main (void) {
srand(time(NULL));
/* code goes here */
return 0;
}