⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 3_31.cpp

📁 C++语言程序设计案例教程,郑莉编的书
💻 CPP
字号:
#include <iostream>
#include <cmath>
using namespace std;
void main( void )
{	double w = -10.0, x = 3.0, y = 0.0, z;
	z = fmod( w, x );   cout<<"The remainder of "<<w<<" / "<<x<<" is "<<z<<endl;
	z = fmod( x, y);   cout<<"The remainder of "<<x<<" / "<<y<<" is "<<z<<endl;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -