C語言_入門例題_PAGE1

郭珮媛發表於2024-11-22

入門例題

在螢幕上輸入一行資訊

#include <stdio.h>
int main()
	{
		printf("This is a C program.\n");
		return 0;
	}

求兩個整數之和

#include<stdio.h>
int main()
	{
		int a,b,sum;
		a=123;
		b=456;
		sum=a+b;
		printf("sum is %d\n",sum);//%d是指定輸出格式,d表示用十進位制整數輸出
		return 0
	}

求兩個整數中較大者

#include <stdio.h>
//主函式
int main()
	{
	int max(int x,int y);
	int a,b,c;
	scanf("%d,%d",&a,&b);//輸入a和b的值
	c=max(a,b);
	printf("max=%d\n",c);
	return 0;
}
//求兩個整數中的較大者max函式
int max(int x,int y)
	{
	int z;
	if(x>y)z=x;
	else z=y;
	return(z);
}

相關文章