View Code of Problem 1

#include<stdio.h>
main()
{
	int A=0, B=0;
  	printf("请分别为A和B赋值,并用空格分隔\n");
  	scanf("%d%d",&A,&B);
  	printf("A+B=%d",A+B);
}

Double click to view unformatted code.


Back to problem 1