4.3.1 String là gì ?
Một chuỗi là một tập hợp các ký tự, mỗi ký tự có thể biểu diễn bằng một biến char. Các biến char rất hữu ích […]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#include <iostream> using namespace std; int main(void) { float f = 123.456; float g = 1e100; int i = f; int j = g; cout << i << endl; cout << j << endl; return 0; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#include <iostream> using namespace std; int main(void) { float f = 1234.5678; double d = f; if(d == f) { cout << "equal" << endl; } else { cout << "not equal" << endl; } return 0; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#include <iostream> using namespace std; int main(void) { int i = 2147483647; short s = i; if(i == s) { cout << "equal" << endl; } else { cout << "not equal" << endl; } return 0; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
int Int = 1; short Short = 2; long Long = 3; float Float = 4.0; double Double = 5.0; int f(int x) { return x; } // example no. 1 Int = Int + Short; // example no. 2 if(Double) { Double--; } // example no. 3 Float = 1; // example no. 4 f(Float); // example no. 5 float g(void) { return -1; } |
Copyright © 2024 CppDeveloper by Phạm Minh Tuấn (SHUN)