摘要:
在虚拟机上配置了Java的开发环境,下载了IntelliJ IDEA 第一次使用不懂得RUN,在杨某帮助下,成功解决了 1、创建Project 2、将项目设置为 源根目录(source root) 3、file放在src文件夹下面 4、公共类名要和文件名相同 5、代码 public class We 阅读全文
摘要:
问题A:谁是你的潜在朋友 #include<cstdio> #include<cstring> int main(){ const int maxn = 210; int N, M; int hashTable[maxn] = {0}; int stu[maxn] = {0}; while(scan 阅读全文
摘要:
【codeup 1934】找x 当然也可利用 i == n 判断是否有x存在 #include<cstdio> int main(){ const int max = 210; int a[max] = {0}; int n, j = -1; scanf("%d", &n); for(int i=0 阅读全文