summaryrefslogtreecommitdiff
path: root/c,cc/float_int.cc
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-06-15 03:50:12 +0200
committerPatrick Simianer <p@simianer.de>2014-06-15 03:50:12 +0200
commit258e1b92ebbfdebefabc120969ab87c3d8b75c3d (patch)
treeef4ab11fe0bf9d720cea23b35711358a8465feeb /c,cc/float_int.cc
parentcf3a29feb5887344b6633ead1b4b6d5657a15a4b (diff)
old c,cc examples
Diffstat (limited to 'c,cc/float_int.cc')
-rw-r--r--c,cc/float_int.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/c,cc/float_int.cc b/c,cc/float_int.cc
new file mode 100644
index 0000000..9d0ece4
--- /dev/null
+++ b/c,cc/float_int.cc
@@ -0,0 +1,26 @@
+#include <iostream>
+
+using namespace std;
+
+
+int main(void)
+{
+ int a = 1;
+ int b = 2;
+ double q = (double)a/b;
+ cout << q << endl;
+
+ cout << 1 - (float)a/b << endl;
+
+ float x = 0.1;
+ unsigned y = 105;
+ unsigned z = x*y;
+ cout << z << endl;
+
+ float u = -1;
+ if (u) cout << "XXXXXX" << endl;
+
+ float j = 0.0;
+ if (j) cout << "j" << endl;
+}
+