| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1869 人关注过本帖
标题:复数运算问题
只看楼主 加入收藏
luo113927
Rank: 1
等 级:新手上路
帖 子:173
专家分:0
注 册:2006-3-15
收藏
 问题点数:0 回复次数:4 
复数运算问题

我写的这个程序经常出现一些莫名其妙的问题,比如进入死循环或者当输入3个以上的复数进行乘法时,就会出错

所以只好来请教各位了

#include <stdio.h>
#include <conio.h>

void input( float (*p)[2], float sshu, float xshu, int *max );
void jiafa( float (*p)[2], float *sshu, float *xshu, int max );
void jianfa( float (*p)[2], float *sshu, float *xshu, int max );
void chengfa( float (*p)[2], float *sshu, float *xshu, int max );
void output( float (*p)[2], float sshu, float xshu, int max );
void putfushu( float (*p)[2], float sshu, float xshu, int max );

void main()
{
int k,max=0;
float p[10][2]={0}, sshu=0, xshu=0;
for ( ; ; )
{
printf("请选择一个你所需要的功能 :> 0 : 输出输入复数 ;1 : 加法运算 ;2 : 减法运算 ; 3 : 乘法运算;\n");
scanf("%d",&k);
void clrscr();
switch ( k )
{
case 0:input(p,sshu,xshu,&max);
putfushu(p,sshu,xshu,max);
break;

case 1:input(p,sshu,xshu,&max);
jiafa(p,&sshu,&xshu,max);
output(p,sshu,xshu,max);
break;

case 2:input(p,sshu,xshu,&max);
jianfa(p,&sshu,&xshu,max);
output(p,sshu,xshu,max);
break;

case 3:input(p,sshu,xshu,&max);
chengfa(p,&sshu,&xshu,max);
output(p,sshu,xshu,max);
break;

default:printf("错误的输入\n");
break;
}
}
}

void input(float (*p)[2], float sshu, float xshu, int *max)
{
int i;
printf(" 请输入有几组数参与运算\n");
scanf("%d",max);
for ( i=0; i < *max; i++)
{
printf("请输入第-- %d --组复数:eg--- xx.xx,xx.xx\n", i+1);
scanf("%f,%f",&p[i][0],&p[i][1]);
}
}

void jiafa( float (*p)[2], float *sshu, float *xshu, int max )
{
int i;
for ( i=0; i < max; i++ )
{
*sshu+=p[i][0];
*xshu+=p[i][1];
}
}

void jianfa( float (*p)[2], float *sshu, float *xshu, int max )
{
int i;
*sshu=p[0][0];
*xshu=p[0][1];
for ( i=1; i < max; i++ )
{
*sshu-=p[i][0];
*xshu-=p[i][1];
}
}

void chengfa( float (*p)[2], float *sshu, float *xshu, int max )
{
int i;
*sshu=p[0][0];
*xshu=p[0][1];
for ( i=1; i < max; i++ )
{
*sshu=*sshu*p[i][0]-*xshu*p[i][1];
*xshu=*sshu*p[i][1]+*xshu*p[i][0];
}
}

void output( float (*p)[2], float sshu, float xshu, int max )
{
printf(" 计算结果是 :%f", sshu);
if ( xshu >= 0)
printf("+i%f\n\n", xshu);
else
printf("-i%f\n\n",xshu*(-1));
}

void putfushu( float (*p)[2], float sshu, float xshu, int max )
{
int i;
for ( i=0; i < max; i++)
{
printf("你输入的复数为:%f", p[i][0]);
if ( p[i][1] >= 0)
printf("+i%f\n\n", p[i][1]);
else
printf("-i%f\n\n",p[i][1]*(-1));
}
}

搜索更多相关主题的帖子: 复数 运算 
2006-03-27 13:31
luo113927
Rank: 1
等 级:新手上路
帖 子:173
专家分:0
注 册:2006-3-15
收藏
得分:0 
请大家帮忙了啊
2006-03-27 18:55
feng1256
Rank: 4
等 级:贵宾
威 望:14
帖 子:2899
专家分:0
注 册:2005-11-24
收藏
得分:0 
我一会帮你找

叁蓙大山:工謪、稅務、嗣發 抱歉:不回答女人的问题
2006-03-27 22:06
feng1256
Rank: 4
等 级:贵宾
威 望:14
帖 子:2899
专家分:0
注 册:2005-11-24
收藏
得分:0 

你对照下,我去掉些作用不大的功能,改了一点
[CODE]
#include <stdio.h>
#include <conio.h>
void input (float (*p)[2], int *max ); /*去掉无用参数*/
void jiafa (float (*p)[2], float *sshu, float *xshu, int max );
void jianfa (float (*p)[2], float *sshu, float *xshu, int max );
void chengfa (float (*p)[2], float *sshu, float *xshu, int max );
void output (float sshu, float xshu ); /*去掉无用参数*/
void main()
{
int k,max=0;
float p[10][2]={0},sshu, xshu;


for ( ; ; )
{
sshu=xshu=0; /*初始化,不然出错*/
printf("请选择一个你所需要的功能 :\n0 :退出 ; 1 : 加法运算 ;\n2 : 减法运算 ; 3 : 乘法运算;\n");
scanf("%d",&k);
clrscr();
if(k==0)
break; /*加退出功能*/
switch (k)
{

case 1: {
input(p,&max);
jiafa(p,&sshu,&xshu,max);
output(sshu,xshu);
break;
}

case 2: {
input(p,&max);
jianfa(p,&sshu,&xshu,max);
output(sshu,xshu);
break;
}

case 3: {
input(p,&max);
chengfa(p,&sshu,&xshu,max);
output(sshu,xshu);
break;
}

default:{
printf("错误的输入\n");
break;
}
}
}
getch();
}

void input(float (*p)[2], int *max)
{
int i;

printf(" 请输入有几组数参与运算\n");
scanf("%d",max);
for ( i=0; i < *max; i++)
{
printf("请输入第-- %d --组复数:\n", i+1);
scanf("%f%f",&p[i][0],&p[i][1]); /这里我去了个逗号*/
}
}

void jiafa( float (*p)[2], float *sshu, float *xshu, int max )
{
int i;

for ( i=0; i < max; i++ )
{
*sshu+=p[i][0];
*xshu+=p[i][1];
}
}

void jianfa( float (*p)[2], float *sshu, float *xshu, int max )
{
int i;

*sshu=p[0][0];
*xshu=p[0][1];
for ( i=1; i < max; i++ )
{
*sshu-=p[i][0];
*xshu-=p[i][1];
}
}

void chengfa( float (*p)[2], float *sshu, float *xshu, int max )
{
int i;
float c;

c=*sshu=p[0][0]; /*保存实部*/
*xshu=p[0][1];
for ( i=1; i < max; i++ )
{
*sshu=c*p[i][0]-*xshu*p[i][1]; /*要不保存,这句执行完,实部发生变化*/
*xshu=c*p[i][1]+*xshu*p[i][0];
c=*sshu; /*保存实部*/
}
}

void output( float sshu, float xshu )
{
printf(" 计算结果是 :%f", sshu);
if ( xshu >= 0)
printf("+i*%f\n\n", xshu);
else
printf("-i*%f\n\n",xshu*(-1));
}


[/CODE]


叁蓙大山:工謪、稅務、嗣發 抱歉:不回答女人的问题
2006-03-28 00:11
luo113927
Rank: 1
等 级:新手上路
帖 子:173
专家分:0
注 册:2006-3-15
收藏
得分:0 

谢谢斑竹啦,哈哈

改过后的程序不再出错了,而且整个程序代码也看起来舒服多了,以后希望大家多多指点

2006-03-28 12:53
快速回复:复数运算问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029642 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved