delete pics to save space
This commit is contained in:
10
history_source/ccf 入门篇/U2/2.2.6.cpp
Normal file
10
history_source/ccf 入门篇/U2/2.2.6.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include<iostream>
|
||||
#include<cmath>
|
||||
using namespace std;
|
||||
int main()
|
||||
{
|
||||
cout<<"ceil(3.14)="<<ceil(3.14)<<" floor(3.14)="<<floor(3.14)<<endl;
|
||||
cout<<"4^3.0="<<pow(4,3.0)<<endl;
|
||||
cout<<"sqrt(9)="<<sqrt(9)<<endl;
|
||||
while(true);
|
||||
}
|
Reference in New Issue
Block a user