帮忙检查一个程序: #include<iostream> #include<cmath> using namespace std; int main() { double s,t;

如题所述

第1个回答  2011-03-26
程序都看不全啊
第2个回答  2011-03-21
你想问的是?追问

错在哪里?为什么不能运行?

追答

看不到问题啊、

本回答被提问者采纳

C++程序求一元二次方程的根
include<iostream> include<cmath> using namespace std;int main(){ int n;double a[1000],b[1000],c[1000],delta[1000];cin>>n;for(int i=1;i<=n;i++){ cin>>a[i]>>b[i]>>c[i];delta[i]=b[i]*b[i]-4*a[i]*c[i];} for(int j=1;j<=n;j++){ if(delta[j]...

...我是这么编的程序,但是是错的,请帮帮忙,检查下!
include <iostream> using namespace std;int main()格式问题

一道c++编程题,写的一塌糊涂,看看错误,并帮忙改正。谢谢!
include<iostream> include<string.h> using namespace std ;class cstring{ char*str,(*p)[2];int size;public:cstring(char*s){ str=new char[strlen(s)+1];strcpy(str,s);size=0;p=NULL;} void count(){ char *ptmp=new char[strlen(str)+1];char *pstr=str;char *pstart=ptmp;i...

c++一个小程序编写
include<cstdlib>#include<cmath>#include<iostream>using namespace std;float triangle(float,float,float);int main(){int a,b,c;cin>>a>>b>>c;cout<<triangle(a,b,c);system("pause");return 0;}float triangle(float x, float y,float z){int p;p=(x+y+z)\/2;return sqrt(p*...

各位大哥帮帮忙哈,我这有个程序: int NO; cin>>NO; 怎样判断输入的只是...
定义一个字符串来接受cin的数据,然后进行判断,最后在传递给No变量,代码如下:include <iostream> using namespace std;void main(){ int NO;size_t i;char a[50];cin>>a;for(i=0;i<strlen(a);i++){ if(a[i]<'0'|| a[i]>'9'){ return;\/\/检查出包含非数字,跳出 } } NO=...

帮忙写个函数计算字符串长度的
include <iostream> include <cstdio> using namespace std;int mystrlen(char *string);int main(){ char string[80];cout<<"请随便输入一些东西:" ;gets(string);\/\/便于提取一个字符串 cout<<"string的长度是:"<<mystrlen(string)<<"\\n";return 0;} int mystrlen(char *string){ for(...

...是实现输入一个数查看是否在现有阵列中,帮忙简化一下!! 代码如下...
确实是不建议使用goto。在你的这段程序里,当找到了值的时候,可以直接使用break语句跳出循环,这样就不用goto loop了。然后,输入y继续的这个功能,可以使用do……while循环来实现,把loop1到cin>>str之间的语句用do{}括起来,然后把检查str的值的语句换成while(str=='y')。

#include <iostream.h> #include <windows.h> #include <stdlib.h...
return CView::PreCreateWindow(cs);} \/\/ 界面设定 void CSnakeView::OnDraw(CDC* pDC){ CSnakeDoc* pDoc = GetDocument();ASSERT_VALID(pDoc);\/\/ TODO: add draw code for native data here pDC->SelectStockObject(WHITE_BRUSH);pDC->Rectangle(CRect(m_nLeft-1,m_nTop-1,m_nLeft+m_n...

求个c++编程 用蒙特卡洛法算积分 跪求一大神帮忙 跪求
随便写了下,也没怎么检查,大致算法就是这样。你可以参考参考。include <iostream> include <ctime> include <cmath> using namespace std;const double PI = acos(-1);const int MAXR = 999;double interval[MAXR+10];int n;const double a = 0;const double b = PI\/2;double func(...

...现请你帮忙设计一个100以内的随机出题程序,每次运行生成100道题...
include <conio.h> using std::cin;using std::cout;using std::endl;\/\/计算式 数量 int const Num = 100;\/\/计算式中 最大数 int const MaxNum = 100;\/\/每题分数 int const PerMark = 1;\/\/计算结果最大值 int const MaxResult = 100;\/\/计算结果最小值 int const MinResult = 0;...

相似回答
大家正在搜