iOS
-
C++访问结构体成员
#include <iostream> #include <cstring> using namespace std; struct Books { cha…
-
C++标准日志流
// C++标准日志流 #include <iostream> using namespace std; int main() { char str[] = "…
-
C++标准错误流
// C++标准错误流 #include <iostream> using namespace std; int main() { char str[] = "…
-
C++标准输入流
// 标准输入流 #include <iostream> using namespace std; int main() { char name[50]; cout &…
-
C++标准输出流
// C++标准输出流 #include <iostream> using namespace std; int main() { char str[] = "…
-
C++使用struct格式化时间
#include <iostream> #include <ctime> using namespace std; int main() { // curr…
-
C++当前日期和时间
#include <iostream> #include <ctime> using namespace std; int main() { // curr…
-
C++通过引用返回值
#include <iostream> #include <ctime> using namespace std; double vals[] = {10.…
-
C++通过引用传递参数
#include <iostream> using namespace std; // function declaration void swap(int& …
-
C++创建引用
#include <iostream> using namespace std; int main () { // declare simple variables i…