1. Install SQL Server 2000 Sp4. 2. Install SQL Server Driver for JDBC, then set the CLASSPATH. Install JRE 1.5 maybe needed. 3. Enable port 1433 on firewall. Enable TCP of your SQL Server maybe needed转载于:https://www.cnblogs.com/NickyYe/archive/2009/08/0…
C语言教程6数组.ppt#include main( ){ char name[13]; int i; for (i 0; i <12; i )scanf(“ %c”,&name[i]); for (i 0; i <12; i )printf(“ %c”,name[i]); scanf(“ %s”,name); printf(“ %s”,name);} 例2:采用不同的方式输入输出字符串 运行结果:P…