#include <iostream>
using namespace std;
void cll();
void cxx();
int main()
{
cout << "Three blind mice" << endl;
cll();
cxx();
return 0;
}
void cll()
{
cout << "Three blind mice" << endl;
}
void cxx()
{
cout<<"See how they run"<<endl;
cout<<"See how they run"<<endl;
}
这样就可以了,因为该题目中自定义的函数不需要返回值,所以用void而不用int,也没有return语句。
输出结果:
#include<stdioh>
main()
{
int a,b,k;
printf("请输入 a:\n");
scanf("%d",&a);
printf("请输入 b:\n");
scanf("%d",&b);
k=a;a=b;b=k;
printf("a=%d b=%d\n",a,b);
}
以上就是关于c++程序清单全部的内容,包括:c++程序清单、列出程序清单(c语言程序设计)、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)