摘要:
1 #include "GradeCalc_2.hpp" 2 #include <iomanip> 3 4 void test() { 5 int n; 6 cout << "输入班级人数: "; 7 cin >> n; 8 9 GradeCalc c1("OOP", n); 10 11 cout 阅读全文
摘要:
1 #pragma once 2 #include "button.hpp" 3 #include<vector> 4 #include<iostream> 5 6 using std::vector; 7 using std::cout; 8 using std::endl; 9 10 //窗口类 阅读全文
摘要:
1 // 2 // 现代C++标准库、算法库体验 3 // 本例用到以下内容: 4 // 1. 字符串string, 动态数组容器类vector、迭代器 5 // 2. 算法库:反转元素次序、旋转元素 6 // 3. 函数模板、const引用作为形参 7 8 #include <iostream> 阅读全文
摘要:
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include <stdio.h> #include <string.h> #define N 100 #define M 100 int main() { F 阅读全文
摘要:
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; doub 阅读全文
摘要:
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], i 阅读全文
摘要:
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #define N 4 void test1() { int a[N] = { 1, 9, 8, 4 }; int i; // 输出数组a占用的内存字节数 printf("sizeof(a) = % 阅读全文
摘要:
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<time.h> #include<windows.h> #define N 80 void print_text(int line, int c 阅读全文
摘要:
问题1:确保输出的数值在374-465之间 问题2:输出4个“学号+0+三位随机数”形式的随机数值 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #d 阅读全文
摘要:
#include <stdio.h> #include <math.h> int main() { double x, ans; while (scanf("%lf", &x) != EOF) { ans = pow(x, 365); printf("%.2f的365次方: %.2f\n", x, 阅读全文