<aside>

Help center

Getting started with FlowUs AI!

What's New

Contact & Support

Import

Text

Simple table

Quote

Title

Divider

Callout

To-do list

Numbered list

Math equations

Bulleted list

Toggle List

Code blocks

Style your blocks

About Page

Create a new page

Style your pages

Share your page

Co-create page

Settings

Create a new workspace

Invite members to join the space

Search in your workspace

Images

Videos

Audio

Files

Web bookmarks

Mind map

Synced blocks

Buttons

About Datebases

Operation Guide of datebases

Table view

List view

Board view

Gallery view

Calendar view

Timeline view

</aside>

On any pages, you can create a code block to display code so that it's broken out from the rest of your content and formatted by language.

Creation method:

You also can quickly create code snippets using Markdown syntax:

​​

We support syntax highlighting for a number of programming languages. To change the display language of your code:

#include <iostream.h>
using namespace std;
int main()
{
	int x,y;
	cin>>x;
	if(x<0)
		y=-x;
	else if(y>0)
		y=x;
	cout<<y;
}