摘要:
#include int main(void) { int a,b; printf("输入2个整数:\n"); scanf("%d%d",&a,&b); // 注意:两个%d%d之间没有“,”隔离 printf("a=%d,b=%d",a,b); return 0; } #include int main(void) { int a; ... 阅读全文
摘要:
一、先进入网址:http://www.codeblocks.org/downloads/,选择Download the binary release。 二、转换网页后,选择codeblocks-17.12mingw-nosetup.zip(用mingw编译C/C++,不能编译Fortran的绿色免安 阅读全文