You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
424 B
16 lines
424 B
#include<iostream>
|
|
#include<string.h>
|
|
#include "a.h"
|
|
#include "b.h"
|
|
#include "c.h"
|
|
#include "d.h"
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
cout << powe(2) << "测试_A编写一个可以运算e^x运算的a.hpp"<<endl;
|
|
cout << coun(2, 8) << "测试_B编写一个可以运算logax的b.hpp"<<endl;
|
|
cout << compute(2, 5, '+') << "测试_C编写一个可以运算加减乘除的c.hpp"<<endl;
|
|
cout << sin(90) << "测试_D编写一个可以运算三角函数的d.hpp"<<endl;
|
|
|
|
return 0;
|
|
} |