Psl/c++ cheat sheet

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา

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;
}

c: printf/scanf

c-style strings