10 lines
116 B
C
10 lines
116 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
double x = 5.0;
|
||
|
double y = 3.0;
|
||
|
|
||
|
x = (x * 1.5) - y;
|
||
|
printf("x is \%g\n", x);
|
||
|
}
|