Swinging the pendulum back to extremely basic

main
Dan Buch 2 weeks ago
parent 8532dd4657
commit 58002830a8
Signed by: meatballhat
GPG Key ID: A12F782281063434

@ -0,0 +1 @@
basic

@ -0,0 +1,9 @@
#include <stdio.h>
int main() {
double x = 5.0;
double y = 3.0;
x = (x * 1.5) - y;
printf("x is \%g\n", x);
}
Loading…
Cancel
Save