摘要: //#include<iostream>//#include<fstream>//using namespace std;// struct student// {// char name[20];// char sex[20];// int age;// };// int main()// {// 阅读全文
posted @ 2023-05-06 21:02 赵千万 阅读(137) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream>//#include<fstream>//#include<cmath>//using namespace std;//class MyComplex//{//private:// double x, y;//public:// MyComplex() { x 阅读全文
posted @ 2023-05-05 22:17 赵千万 阅读(9) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream>//using namespace std;//class Vehicle//{//public:// virtual float travelTime(float) = 0;// virtual void setSpeed(float) = 0;//};// 阅读全文
posted @ 2023-05-04 21:23 赵千万 阅读(12) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList;import java.util.Scanner;import java.util.StringJoiner;public class Main { public static void main(String[] args) { /* Scan 阅读全文
posted @ 2023-04-27 21:00 赵千万 阅读(21) 评论(0) 推荐(0) 编辑
摘要: //一组数组传参//#include<stdio.h> //void InputArray(int n[], int a);//void OutputArray(int n[], int a);//int main()//{// int m[3];// InputArray(m, 3);// Out 阅读全文
posted @ 2023-04-26 20:38 赵千万 阅读(21) 评论(0) 推荐(0) 编辑
摘要: //#include <iostream> //#include<iomanip>//#include <cmath>//using namespace std;//int main()//{// int d = 16;// cout << hex << d << endl;// /*格式输出// 阅读全文
posted @ 2023-04-25 21:05 赵千万 阅读(11) 评论(0) 推荐(0) 编辑
摘要: #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 阅读全文
posted @ 2023-04-24 20:14 赵千万 阅读(17) 评论(0) 推荐(0) 编辑
摘要: /*模块格式:template<class T>返回值类型 函数名(参数形参表){ 函数体;}*///#include<iostream>//using namespace std;//template <class T>//T GetMax(T a, T b)//{// T result;// r 阅读全文
posted @ 2023-04-23 20:59 赵千万 阅读(30) 评论(0) 推荐(0) 编辑
摘要: //#include<stdio.h>//#include<string.h>////#include<iostream>////using namespace std;//char s[100];//int i, len;//int main()//{// gets(s);// len = str 阅读全文
posted @ 2023-04-21 22:29 赵千万 阅读(69) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream>//#include <stdio.h>//#include<string>//using namespace std;//char* search(char* s, char* t);//int main()//{// char s[30] = ""; // 阅读全文
posted @ 2023-04-20 21:02 赵千万 阅读(15) 评论(0) 推荐(0) 编辑