补充作业:利用visual studio code编写C

这个是之前写过的简单c代码

#include <stdio.h>

int main() {
	int a;
	int b;
	scanf("%d%d", &a, &b);
	int c = a+b;
	printf("%d\n", c);
	printf("hello world!\n");
	return 0;
}
posted @ 2022-01-18 21:16  Q·K  阅读(73)  评论(0)    收藏  举报