亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用C語言代碼實現復數的加減及輸出結構體

發布時間:2022-02-14 12:02:26 來源:億速云 閱讀:298 作者:iii 欄目:開發技術

這篇“怎么用C語言代碼實現復數的加減及輸出結構體”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“怎么用C語言代碼實現復數的加減及輸出結構體”文章吧。

 一、復數的加減

#include<stdio.h>
 
typedef struct complex
{
	int real;	//實部
	int imag;	//虛部
}complex;
 
/*
	功能:復數加法
	參數:兩個復數
	返回值:兩個復數的和
*/
complex complexadd(complex x,complex y)
{
	complex sum;
	sum.real = x.real + y.real;
	sum.imag = x.imag + y.imag;
	return sum;
}
 
/*
	功能:復數減法
	參數:兩個復數
	返回值:兩個復數的差
*/
complex complexsub(complex x,complex y)
{
	complex sum;
	sum.real = x.real - y.real;
	sum.imag = x.imag - y.imag;
	return sum;
}
 
/*
	功能:打印復數
	參數:一個復數
*/
void printfcomplex(complex x)
{
	printf("%d",x.real);
	if(x.imag > 0)
	{
		printf("+");
	}
	printf("%d\n",x.imag);
}
 
int main()
{
	complex f1 = {3,-5};
	complex f2 = {-5,8};
	printfcomplex(f1);
	printfcomplex(f2);
	complex f3 = complexadd(f1,f2);
	printfcomplex(complexadd(f1,f2));
	printfcomplex(f3);
	printfcomplex(complexsub(f1,f2));
	return 0;
}

二、分文件complex.c

#include<stdio.h>
#include"complex.h"
 
 
/*
	功能:復數加法
	參數:兩個復數
	返回值:兩個復數的和
*/
complex complexadd(complex x,complex y)
{
	complex sum;
	sum.real = x.real + y.real;
	sum.imag = x.imag + y.imag;
	return sum;
}
 
/*
	功能:復數減法
	參數:兩個復數
	返回值:兩個復數的差
*/
complex complexsub(complex x,complex y)
{
	complex sum;
	sum.real = x.real - y.real;
	sum.imag = x.imag - y.imag;
	return sum;
}
 
/*
	功能:打印復數
	參數:一個復數
*/
void printfcomplex(complex x)
{
	printf("%d",x.real);
	if(x.imag > 0)
	{
		printf("+");
	}
	printf("%di\n",x.imag);
}

main.c

#include<stdio.h>
#include"complex.h"		// complex 頭文件
 
int main()
{	
	complex f1 = {3,-5};		// 結構體初始化
	complex f2 = {-5,8};
	printfcomplex(f1);			// 打印復數
	printfcomplex(f2);
	complex f3 = complexadd(f1,f2);
	printfcomplex(complexadd(f1,f2));
	printfcomplex(f3);
	printfcomplex(complexsub(f1,f2));
	return 0;
}

complex.h

#ifndef __COMPLEX_H__
#define __COMPLEX_H__
 
// 類型聲明
typedef struct complex
{
	int real;	//實部
	int imag;	//虛部
}complex;
 
/*
	功能:復數加法
	參數:兩個復數
	返回值:兩個復數的和
*/
complex complexadd(complex x,complex y);
 
/*
	功能:復數減法
	參數:兩個復數
	返回值:兩個復數的差
*/
complex complexsub(complex x,complex y);
 
 
/*
	功能:打印復數
	參數:一個復數
*/
void printfcomplex(complex x);
 
 
#endif

以上就是關于“怎么用C語言代碼實現復數的加減及輸出結構體”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

马尔康县| 茶陵县| 区。| 阿鲁科尔沁旗| 乌兰浩特市| 保康县| 嘉定区| 隆尧县| 五指山市| 巫山县| 新安县| 得荣县| 南漳县| 凉山| 明溪县| 荥经县| 盘山县| 泸州市| 陆良县| 石楼县| 潜山县| 广昌县| 凌云县| 曲麻莱县| 调兵山市| 邵武市| 胶南市| 磴口县| 门源| 莆田市| 伊春市| 锡林郭勒盟| 航空| 龙陵县| 阿城市| 秀山| 德阳市| 永泰县| 论坛| 阳新县| 卢龙县|