ผลต่างระหว่างรุ่นของ "Psl/c++ cheat sheet"
ไปยังการนำทาง
ไปยังการค้นหา
Jittat (คุย | มีส่วนร่วม) |
Jittat (คุย | มีส่วนร่วม) |
||
แถว 1: | แถว 1: | ||
== data types == | == data types == | ||
− | * <tt>int</tt> | + | * <tt>int</tt> - for typical 32-bit integers |
− | * <tt>double</tt> | + | * <tt>double</tt> - for floating point numbers |
− | * <tt>char</tt> | + | * <tt>char</tt> - for 1-byte characters |
− | * <tt>long long</tt> | + | * <tt>long long</tt> - for large integers (64 bits) |
== input/output == | == input/output == |
รุ่นแก้ไขเมื่อ 23:23, 7 มกราคม 2561
data types
- int - for typical 32-bit integers
- double - for floating point numbers
- char - for 1-byte characters
- long long - for large integers (64 bits)
input/output
c++: cin/cout
#include <iostream>
using namespace std;
main()
{
int x;
cin >> x;
cout << "answer = " << (x+1) << endl;
}
Remarks: Don't forget the using namespace line. If you do not declare that you need to prefix cin, cout, endl with std, e.g., use std::cin.