ผลต่างระหว่างรุ่นของ "Psl/c++ cheat sheet"
ไปยังการนำทาง
ไปยังการค้นหา
Jittat (คุย | มีส่วนร่วม) |
Jittat (คุย | มีส่วนร่วม) |
||
แถว 9: | แถว 9: | ||
=== c++: cin/cout === | === c++: cin/cout === | ||
+ | <syntaxhighlight lang="cpp"> | ||
+ | #include <iostream> | ||
+ | using namespace std; | ||
+ | |||
+ | main() | ||
+ | { | ||
+ | int x; | ||
+ | |||
+ | cin >> x; | ||
+ | cout << "answer = " << (x+1) << endl; | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
=== c: printf/scanf === | === c: printf/scanf === | ||
== c-style strings == | == c-style strings == |
รุ่นแก้ไขเมื่อ 23:20, 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;
}