C语言_入门例题_PAGE1

入门例题

在屏幕上输入一行信息

#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);
}
posted @ 2024-11-22 11:56  郭珮媛  阅读(2)  评论(0编辑  收藏  举报