91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么用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

凤凰县| 清新县| 磴口县| 醴陵市| 资中县| 额尔古纳市| 天峨县| 嘉禾县| 资阳市| 准格尔旗| 宁乡县| 同德县| 万载县| 麻栗坡县| 金坛市| 蓬莱市| 普格县| 洞口县| 荔浦县| 和政县| 镇宁| 探索| 同心县| 廉江市| 海林市| 介休市| 定日县| 华容县| 沧州市| 通渭县| 苍山县| 安图县| 海原县| 阜宁县| 防城港市| 云霄县| 金沙县| 手游| 平湖市| 嘉鱼县| 桃园县|