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

📄 io.cpp

📁 C++中输入输出的例子,对于C++入门的学者来说有一定的参考价值,可以学习C++的基本语法
💻 CPP
字号:
// io.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
#include <iomanip>
using namespace std;

int main(int argc, char* argv[])
{
	int i=10;
	float f=12.1f;
	cout.fill('_');
	cout<<i <<f <<endl;
	cout.width(12);
	cout<<hex<<i<<left<<endl;
	cout.width(12);
	cout<<scientific<<f<<endl;
	
	return 0;
}

⌨️ 快捷键说明

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