零起点学算法09——继续练习简单的输入和计算(a-b)

#include<stdio.h>
int main()
{
    int a,b;
    scanf("%d %d",&a,&b);
    printf("%d",a-b);
    return 0;
    }

猜你喜欢

转载自www.cnblogs.com/chenlong991223/p/9645923.html