函数的常见样式

简介: 函数的常见样式

1.无参无返


#include<iostream>
using namespace std;
 void test1(){
  cout<<"this is test01"<<endl;
 }
 int main(){
  test1();
 }


2.有参无返


#include<iostream>
using namespace std;
 void test2(int a){
  cout<<"this is test02="<<a<<endl;
 }
 int main(){
  test2(100);
 }


3.无参有返


#include<iostream>
using namespace std;
int test3(){
  //cout<<"this is test03"<<endl;
 return 1;
 }
 int main(){
  int num1=test3();
  cout<<"num1= "<<num1<<endl;
  system("pause");
 }


4.有参有返


#include<iostream>
using namespace std;
int test4(int a){
  //cout<<"this is test03"<<endl;
 return a+1;
 }
 int main(){
  int num1=test4(5);
  cout<<"num1= "<<num1<<endl;
  system("pause");
 }
相关文章
|
6月前
|
缓存 前端开发
样式
样式
60 3
|
6月前
|
前端开发 JavaScript
绑定内联样式
绑定内联样式
|
5月前
|
前端开发
内联样式
【6月更文挑战第25天】内联样式。
31 1
|
6月前
|
前端开发 小程序
WXSS模板样式-全局样式和局部样式
**WXSS**是微信小程序的样式表语言,类似于CSS,但做了扩展和修改。它引入了**rpx**作为尺寸单位,用于屏幕适配,1rpx在不同设备上的宽度不同,确保了自适应效果。此外,WXSS支持**@import**语法导入外部样式表,便于代码复用。全局样式定义在`app.wxss`中,作用于每个页面,而局部样式在页面的`.wxss`文件中,优先级高于全局样式,当两者冲突且权重相等时,局部样式会覆盖全局样式。
54 0
|
JavaScript 前端开发 开发者
在组件中使用 style 行内样式并封装样式对象|学习笔记
快速学习在组件中使用 style 行内样式并封装样式对象
186 0
在组件中使用 style 行内样式并封装样式对象|学习笔记
|
前端开发
常用样式
常用样式
117 0
|
前端开发
CSS气泡提示框 可自定义配置箭头
在线演示 本地下载
1482 0
|
Android开发
第12章 样式(六)
设备样式 Xamarin.Forms包含六种内置动态样式。 这些被称为设备样式,它们是名为Styles的嵌套类的成员。 这个Styles类定义了12个静态和只读字段,有助于在代码中引用这六个样式: Style样式的BodyStyle。
1290 0