test.txt
来自「这个程序模拟了编译器功能」· 文本 代码 · 共 26 行
TXT
26 行
#include<iostream>
#include<string>
double square(double);
using namespace std;
void main()
{
double length;
string c;
int a,t;
a=8+4^5;
a++;
--t;
if(a==4)
cout<<a;
cout<<c;
cout<<"Input the length :";
cin>>length;
cout<<"The square is :"
<<square(length);
}
double square(double n)
{
return n*n;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?