摘要:
//#include<iostream>//#include<fstream>//using namespace std;// struct student// {// char name[20];// char sex[20];// int age;// };// int main()// {// 阅读全文
摘要:
//#include<iostream>//#include<fstream>//#include<cmath>//using namespace std;//class MyComplex//{//private:// double x, y;//public:// MyComplex() { x 阅读全文
摘要:
//#include<iostream>//using namespace std;//class Vehicle//{//public:// virtual float travelTime(float) = 0;// virtual void setSpeed(float) = 0;//};// 阅读全文
摘要:
import java.util.ArrayList;import java.util.Scanner;import java.util.StringJoiner;public class Main { public static void main(String[] args) { /* Scan 阅读全文
摘要:
//一组数组传参//#include<stdio.h> //void InputArray(int n[], int a);//void OutputArray(int n[], int a);//int main()//{// int m[3];// InputArray(m, 3);// Out 阅读全文
摘要:
//#include <iostream> //#include<iomanip>//#include <cmath>//using namespace std;//int main()//{// int d = 16;// cout << hex << d << endl;// /*格式输出// 阅读全文
摘要:
#include <stdio.h> void PrintN(int N); int main(){ int N; scanf_s("%d", &N); PrintN(N); return 0;}void PrintN(int N){ for (int i = 0; i < N; i++) { pr 阅读全文
摘要:
/*模块格式:template<class T>返回值类型 函数名(参数形参表){ 函数体;}*///#include<iostream>//using namespace std;//template <class T>//T GetMax(T a, T b)//{// T result;// r 阅读全文
摘要:
//#include<stdio.h>//#include<string.h>////#include<iostream>////using namespace std;//char s[100];//int i, len;//int main()//{// gets(s);// len = str 阅读全文
摘要:
//#include<iostream>//#include <stdio.h>//#include<string>//using namespace std;//char* search(char* s, char* t);//int main()//{// char s[30] = ""; // 阅读全文