let secondSystem:Int = 0b10001 let eightSystem:Int = 0o21 let tenSystem:Int = 17 let sixthSystem:Int = 0x11 // summary: 1.u need insert a "Enter" behind equal symbol let num_a:Float = 1 let num_b:Int = 1 let a:Int = 3 let b:Double = 0.14159
#include<iostream> #include<string> #include<sstream> using namespace std; int main() { stringstream ss; /*string s = "123.1"; ss << s; float a; ss >> a; cout << a + 1;*/ float b = 10.1; ss << b; string