iOS
-
C++访问二维数组
#include <iostream> using namespace std; int main () { // an array with 5 rows and 2…
-
C++访问数组元素
#include <iostream> using namespace std; #include <iomanip> using std::setw; i…
-
C++随机数
#include <iostream> #include <ctime> #include <cstdlib> using namespace …
-
C++数学运算
#include <iostream> #include <cmath> using namespace std; int main () { // num…
-
C++定义数字
#include <iostream> using namespace std; int main () { // number definition: short s…
-
C++通过引用调用
#include <iostream> using namespace std; // function definition to swap the values. …
-
C++通过指针调用
#include <iostream> using namespace std; // function definition to swap the values. …
-
C++按值调用
#include <iostream> using namespace std; void swap(int x, int y) { int temp; temp = …
-
C++默认值参数
#include <iostream> using namespace std; int sum(int a, int b = 20) { int result; re…
-
C++嵌套switch语句
#include <iostream> using namespace std; int main () { // local variable declaration…