标签:col return class can std bsp scanf stdio.h pre
#include <stdio.h> int main() { int a; int b; scanf("%d %d",&a,&b); printf("%d",a+b); return 0; }
#include <stdio.h> int main() { int a,b; scanf("%d",&a); scanf("%d",&b); printf("%d",a+b); return 0; }
标签:col return class can std bsp scanf stdio.h pre
原文地址:https://www.cnblogs.com/chenlong991223/p/9645907.html