一个c++简单程序的源代码

2024-12-26 02:24:15
推荐回答(4个)
回答1:

#include
int main()
{
int a;
cin>>a;
cout< return 0;
}
上面是一个很简单的程序,希望你能够从中有所领悟。加油啊!

回答2:

#include
#include
using namespace std;
void main()
{
int a;
cout<<"你想解一元二次方程还是开平方根?"<cout<<"1.开平方根"<<'\t'<<"2.解一元二次方程"<<'\t'<<"3.随便"<cin>>a;
if(a==1)
{
double b;
cout<<"输入一个大于等于0的数"<cin>>b;
if(b<0)
{
double c;
do
{
cout<<"请重新输入"<cin>>c;
}
while(c<=0);
c=sqrt(c);
cout<<"此数的平方根为"<}
else
{b=sqrt(b);
cout<<"此数平方根为"<}
}
else
{
if(a==2)
{
double a,b,c,x1,x2;
cout<<"解方程ax^2+bx+c=o"<cout<<"请输入a的值=";
cin>>a;
cout<<"请输入b的值=";
cin>>b;
cout<<"请输入c的值=";
cin>>c;
x1=(-b+sqrt(b*b-4*a*c))/(2*a);
x2=(-b-sqrt(b*b-4*a*c))/(2*a);
if (b*b-4*a*c<0)
{
cout<<"此方程无解"<}
else
{
cout<<"x1="<}
}
else
{
if(a==3)
{
cout<<"不要这么随便!"<}
else
{
cout<<"叫你选择1或2或3,你摁"<}
}
}
}
希望对你有所帮助。

回答3:

#include
int main()
{
cout<<"这是输出"< return 0;
}
上面是输出一行文字。

回答4:

这个是游戏挑颜色用的
#include
#include
using namespace std;
void colour(int a)
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),a);
}
int main()
{
int check;
std::cout<<"colour is???"<int i,n;
std::cin>>i;
colour(i);
system("cls");
std::cout<<"the colour is:"<colour(15);
std::cout<<"cin 0 return 0,cin other return 1"<std::cin>>check;
if(1){
check==0;
system("pause");
}
while(check!=0){
int check;
std::cout<<"colour is???"<int i,n;
std::cin>>i;
colour(i);
system("cls");
std::cout<<"the colour is:"<colour(15);
std::cout<<"cin 0 return 0,cin other return 1"<std::cin>>check;
if(check!=0){

system("pause") ;
}
if(check==0){

return 0;

}
}
}