ผลต่างระหว่างรุ่นของ "Psl/c++ cheat sheet"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
แถว 21: แถว 21:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
'''Remarks''':  Don't forget the <tt>using namespace</tt> line.  If you do not declare that you need to prefix cin, cout, endl with <tt>std</tt>, e.g., use <tt>std::cin</tt>.
  
 
=== c: printf/scanf ===
 
=== c: printf/scanf ===
  
 
== c-style strings ==
 
== c-style strings ==

รุ่นแก้ไขเมื่อ 23:22, 7 มกราคม 2561

data types

  • int
  • double
  • char
  • long long

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.

c: printf/scanf

c-style strings