C求两个数之和_#include

#include <stdio.h>
#include <iostream>

int main()
{
	//printf(sizeof(char));
	int a, b, sum;
	a = 123;
	b = 456;
	sum = a + b;
	printf("sum i是%d\n",sum);
	return 0;
}

2.求两数最大值

// ConsoleApplication1.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include <stdio.h>
#include <iostream>

int main()
{
	int max(int x, int y);
    int result=	max(110, 20);
	printf("result%d",result);
	return 0;
}

int max(int x,int y)
{
	int z;
	if (x > y) {
		z = x;
	}
	else
	{
		z = y;
	}

	return z;
}

C求两个数之和_算法_02