c

shinku 发表于 2个月前 · 关联问题 The missing integer

include <stdio.h>

int main() {

int total=55,a=0; for(int i=1;i<=9;i++){ scanf("%d",&a); total -= a; } printf("The missing integer is:%d",total);

}