#include <stdio.h> void main() { int a,b,c,sum; sum=a+b+c; //尚未赋值,结果不明确 scanf("a b c ",&a,&b,&c); //此句是赋值语句 应该放在上一语句的前面 printf("周长是%d",sum); }