求计算机高人,要求JAVA的。。谢谢了! 绘图的题目不用了

作者&投稿:城柄 (若有异议请与网页底部的电邮联系)
求计算机高人!!!要求JAVA编程 22道题!!!谢谢啊啊啊 绘图的不用写了~

//所有题的答案
1.
import java.util.Random;

public class Test33 {
public static void main(String[] args) {
Random rand = new Random();
int a, b, c;
int max, min;
a = rand.nextInt();
b = rand.nextInt();
c = rand.nextInt();
max = a>b?(a>c?a:c):(b>c?b:c);
min = a<b?(a<c?a:c):(b<c?b:c);
System.out.printf("三个整数:%d, %d, %d
", a, b, c);
System.out.printf("最大数:%d
", max);
System.out.printf("最小数:%d
", min);
}
}

2.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int num;
int sum = 0;//和
double avg;//平均数
int count = 0;
Scanner scan = new Scanner(System.in);

System.out.println("请输入整数(-1结束):");
while(true){
System.out.printf("No. %d:", count+1);
num = scan.nextInt();
if(num==-1){
break;
}
if(num100){
continue;
}
if(!(num%3==0 && num%5!=0 && num%9!=0)){
continue;
}
sum += num;
count++;
}
avg = 1.0 * sum / count;

System.out.printf("所有数的和:%d
", sum);
System.out.printf("所有数的平均值:%.2f
", avg);
}
}


3.
public class Test33 {
public static void main(String[] args) {
int num;
int count = 0;
int i, j;
for(i=0; i<=9; i++){
for(j=0; j<=9; j++){
num = 10023 + 1000 * i + 100 * j;
if(num%57==0 || num%67==0){
System.out.printf("第%2d种可能 : %d
", ++count, num);
}
}
}
}

4.
/

5.
public class Test33 {
public static void main(String[] args) {
int num;
int count = 0;

System.out.println("100以内的所有素数:");
for(num=2; num<=100; num++){
if(isPrime(num) == true){
count++;
System.out.printf("%6d", num);
}
}
System.out.println("
素数总数:" + count);

}

public static boolean isPrime(int num){
int i, k;
if(num == 2){
return true;
}
k = (int)Math.sqrt(num);
for(i=2; i<=k; i++){
if(num%i == 0){
return false;
}
}
return true;
}
}

6.
public class Test33 {
public static void main(String[] args) {
int total = 100;
int num1;//一分硬币数
int num2;//二分硬币数
int num5;//五分硬币数
int count = 0;//换法总数
for(num1=1; num1<=total; num1++){
for(num2=1; num2<=total/2; num2++){
for(num5=1; num5<=total/5; num5++){
if(num1+2*num2+5*num5 == total){
count++;
System.out.printf("换法%-3d:一分硬币数:%2d,二分硬币数:%2d,五分硬币数:%2d
", count, num1, num2, num5);
}
}
}
}
System.out.println("共有" + count + "种换法");
}
}

7.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int n;
Scanner scan = new Scanner(System.in);
System.out.print("输入数列的大小(n):");
n = scan.nextInt();

System.out.println("Fibonacci数列");
for(int i=1; i<n; i++){
System.out.print(fabonacci(i) + ", ");
}
System.out.print(fabonacci(n));
}

public static long fabonacci(int num){
if(num==1 || num==2){
return 1;
}
return fabonacci(num-1) + fabonacci(num-2);
}
}

8.
public class Test33 {
public static void main(String[] args) {
int num;
int a, b, c;

System.out.println("满足条件的所有三位自然数:");
for(num=100; num<1000; num++){
a = num/100;
b = num/10%10;
c = num%10;
if(a*a*a+b*b*b+c*c*c == num){
System.out.println(num);
}
}
}
}

9.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int n;
long sum;
Scanner scan = new Scanner(System.in);

System.out.print("输入正整数(n):");
n = scan.nextInt();

sum = summary(n);

System.out.printf("1!+2!+...+%d! = %d
", n, sum);
}

public static long fact(int num){
long f = 1;
for(int i=2; i<=num; i++){
f *= i;
}
return f;
}

public static long summary(int num){
long sum = 0;
for(int i=1; i<=num; i++){
sum += fact(i);
}
return sum;
}
}

10.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
double a, b, c;
double x1, x2;
double delta;
Scanner scan = new Scanner(System.in);

System.out.print("a = ");
a = scan.nextDouble();
System.out.print("b = ");
b = scan.nextDouble();
System.out.print("c = ");
c = scan.nextDouble();

delta = b*b-4*a*c;

if(a == 0){
if(b == 0){
System.out.println("一元一次方程无解!");
}
else{
System.out.printf("一元一次方程 x = %.4f
", 1.0 * c / b);
}
}
else {
if(delta < 0){
System.out.println("一元二次方程无实根!");
}
else if(delta == 0){
x1 = -1.0 * b / (2*a);
System.out.printf("一元二次方程有两个相等实根 x1 = x2 = %.4f
", x1);
}
else{
x1 = (-1.0 * b + Math.sqrt(delta)) / (2*a);
x2 = (-1.0 * b - Math.sqrt(delta)) / (2*a);
System.out.printf("一元二次方程有两个不同的实根 x1 = %.4f, x2 = %.4f
", x1, x2);
}
}
}
}

11.
public class Test33 {
public static void main(String[] args) {
int a, b, c;
int num;
int count = 0;
for(a=1; a<=4; a++){
for(b=1; b<=4; b++){
for(c=1; c<=4; c++){
num = 100*a + 10*b + c;
count++;
System.out.printf("%4d", num);
if(count%10==0){
System.out.println();
}
}
}
}
System.out.println("
共有无重复的三位数 " + count + " 个");
}
}

12.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int n;
int sign = 1;
int sum = 0;
Scanner scan = new Scanner(System.in);
while(true){
System.out.print("输入奇数(n):");
n = scan.nextInt();
if(n>0 && n%2==1){
break;
}
}

for(int i=1; i<=n; i+=2){
sum += sign * i;
sign *= -1;
}

System.out.println("1-3+5-7+...+n = " + sum);
}
}

13.
import java.util.Random;
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
//利用随机数生成一个包含n(n<50)个二位整数的数组,二位整数的数组的数值在[10,60],输出数组。
//并求出最大数和最小数,并显示出结果。

int i, n;
int[] arr;
int max, min;
Random rand = new Random();
Scanner scan = new Scanner(System.in);

while(true){
System.out.print("输入数组大小(0<n<50):");
n = scan.nextInt();
if(n>0 && n<50){
break;
}
}

arr = new int[n];
for(i=1; i<n; i++){
arr[i] = rand.nextInt(60);
if(arr[i] < 10){
arr[i] += 10;
}
}

max = min = arr[0];
for(i=1; i<n; i++){
if(arr[i] > max){
max = arr[i];
}
else if(arr[i] < min){
min = arr[i];
}
}

System.out.println("所有二位整数:");
for(i=1; i<=n; i++){
System.out.printf("%3d", arr[i-1]);
if(i%10==0){
System.out.println();
}
}
System.out.printf("
最大数:%d,最小数:%d
", max, min);
}
}

14.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int i, n;
int f1=1, f2=2;
double sum = 0;
Scanner scan = new Scanner(System.in);

while(true){
System.out.print("输入数列的前n项(n>0):");
n = scan.nextInt();
if(n>0){
break;
}
}

for(i=1; i<=n; i++){
sum += 1.0 * f2 / f1;
f2 = f1 + f2;
f1 = f2 - f1;
}

System.out.printf("数列前%d项的和 = %.4f
", n, sum);
}
}

15.
public class Test33 {
public static void main(String[] args) {
int total = 100;//总金额
int cock;//公鸡数
int hen;//母鸡数
int chicken;//小鸡数
int count = 0;//方案总数

for(cock=0; cock<=total/5; cock++){
for(hen=0; hen<=total/3; hen++){
for(chicken=0; chicken<=total*3; chicken++){
if(cock*5+hen*3+chicken/3.0 == total){
System.out.printf("方案%-3d公鸡:%2d只,母鸡: %2d只,小鸡: %2d只
", ++count, cock, hen, chicken);
}
}
}
}
System.out.println("共有" + count + "种购买方案");
}
}

16.
public class Test33 {
public static void main(String[] args) {
int i, num, sum;

System.out.println("1000以内所有完数:");
for(num=1; num<=1000; num++){
for(sum=1,i=2; i<=num/2; i++){
if(num%i == 0){
sum += i;
}
}
if(sum == num){
System.out.println(num);
}
}
}
}

17.
public class Test33 {
public static void main(String[] args) {
int total = 1000;
int a, b, c;//单价分别为50、40、30元的3种商品的数量
int count = 0;//购买方案总数

System.out.println("所有的购买方案:");
for(a=1; a<=total/50; a++){
for(b=1; b<=total/40; b++){
for(c=1; c<=total/30; c++){
if(a+b+c==30 && 50*a+40*b+30*c==total){
System.out.printf("购买方案%2d:50元商品 %2d件,40元商品 %2d件,30元商品 %2d件
", ++count, a, b, c);
}
}
}
}
System.out.printf("购买方案总数%2d
", count);
}
}

18.
/

19.
/

20.
public class Test33 {
public static void main(String[] args) {
int num;
int count = 0;

System.out.println("所有满足条件的5位数:");
for(num=10000; num<100000; num++){
if(num%10==6 && num%3==0) {
System.out.printf("No.%5d:%d
", ++count, num);
}
}
System.out.printf("这样的5位数共有:%d
", count);
}
}

21.
public class Test33 {
public static void main(String[] args) {
int total;
for(total=1; ;total++){
if(total%2==1 && total%3==2 && total%5==4 && total%6==5 && total%7==0){
break;
}
}
System.out.println("这条阶梯最少共有" + total + "阶");
}
}

22.
public class Test33 {
public static void main(String[] args) {
int num;
int a, b, c, d;//千、百、十、个位数
int m;
for(num=1000; num<10000; num++){
a = num/1000;
b = num/100%10;
c = num/10%10;
d = num%10;
m = (int)Math.sqrt(num);
if(a==b && c==d && a!=c && m*m==num){
System.out.println(num);
}
}
}
}

因为 BufferedImage bi = new BufferedImage(500,500,BufferedImage.TYPE_INT_ARGB);这句话只是创建了一个缓冲区,但是这个缓冲区是谁的????鬼知道!!!你必须创建当前窗口的缓冲区才会在当前窗口用到啊。 BufferedImage bi = (BufferedImage)createImage(500,500);其实就是用当前对象来创建,其实也就是 BufferedImage bi = (BufferedImage)this.createImage(500,500);省略了this而已,但就是它才能指明这个缓冲区是对当前窗口而言的了。

//所有题的答案
1.
import java.util.Random;

public class Test33 {
public static void main(String[] args) {
Random rand = new Random();
int a, b, c;
int max, min;
a = rand.nextInt();
b = rand.nextInt();
c = rand.nextInt();
max = a>b?(a>c?a:c):(b>c?b:c);
min = a<b?(a<c?a:c):(b<c?b:c);
System.out.printf("三个整数:%d, %d, %d\n", a, b, c);
System.out.printf("最大数:%d\n", max);
System.out.printf("最小数:%d\n", min);
}
}

2.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int num;
int sum = 0; //和
double avg; //平均数
int count = 0;
Scanner scan = new Scanner(System.in);

System.out.println("请输入整数(-1结束):");
while(true){
System.out.printf("No. %d:", count+1);
num = scan.nextInt();
if(num==-1){
break;
}
if(num<1 || num>100){
continue;
}
if(!(num%3==0 && num%5!=0 && num%9!=0)){
continue;
}
sum += num;
count++;
}
avg = 1.0 * sum / count;

System.out.printf("所有数的和:%d\n", sum);
System.out.printf("所有数的平均值:%.2f\n", avg);
}
}

3.
public class Test33 {
public static void main(String[] args) {
int num;
int count = 0;
int i, j;
for(i=0; i<=9; i++){
for(j=0; j<=9; j++){
num = 10023 + 1000 * i + 100 * j;
if(num%57==0 || num%67==0){
System.out.printf("第%2d种可能 : %d\n", ++count, num);
}
}
}
}

4.
/

5.
public class Test33 {
public static void main(String[] args) {
int num;
int count = 0;

System.out.println("100以内的所有素数:");
for(num=2; num<=100; num++){
if(isPrime(num) == true){
count++;
System.out.printf("%6d", num);
}
}
System.out.println("\n素数总数:" + count);

}

public static boolean isPrime(int num){
int i, k;
if(num == 2){
return true;
}
k = (int)Math.sqrt(num);
for(i=2; i<=k; i++){
if(num%i == 0){
return false;
}
}
return true;
}
}

6.
public class Test33 {
public static void main(String[] args) {
int total = 100;
int num1; //一分硬币数
int num2; //二分硬币数
int num5; //五分硬币数
int count = 0; //换法总数
for(num1=1; num1<=total; num1++){
for(num2=1; num2<=total/2; num2++){
for(num5=1; num5<=total/5; num5++){
if(num1+2*num2+5*num5 == total){
count++;
System.out.printf("换法%-3d:一分硬币数:%2d,二分硬币数:%2d,五分硬币数:%2d\n", count, num1, num2, num5);
}
}
}
}
System.out.println("共有" + count + "种换法");
}
}

7.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int n;
Scanner scan = new Scanner(System.in);
System.out.print("输入数列的大小(n):");
n = scan.nextInt();

System.out.println("Fibonacci数列");
for(int i=1; i<n; i++){
System.out.print(fabonacci(i) + ", ");
}
System.out.print(fabonacci(n));
}

public static long fabonacci(int num){
if(num==1 || num==2){
return 1;
}
return fabonacci(num-1) + fabonacci(num-2);
}
}

8.
public class Test33 {
public static void main(String[] args) {
int num;
int a, b, c;

System.out.println("满足条件的所有三位自然数:");
for(num=100; num<1000; num++){
a = num/100;
b = num/10%10;
c = num%10;
if(a*a*a+b*b*b+c*c*c == num){
System.out.println(num);
}
}
}
}

9.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int n;
long sum;
Scanner scan = new Scanner(System.in);

System.out.print("输入正整数(n):");
n = scan.nextInt();

sum = summary(n);

System.out.printf("1!+2!+...+%d! = %d\n", n, sum);
}

public static long fact(int num){
long f = 1;
for(int i=2; i<=num; i++){
f *= i;
}
return f;
}

public static long summary(int num){
long sum = 0;
for(int i=1; i<=num; i++){
sum += fact(i);
}
return sum;
}
}

10.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
double a, b, c;
double x1, x2;
double delta;
Scanner scan = new Scanner(System.in);

System.out.print("a = ");
a = scan.nextDouble();
System.out.print("b = ");
b = scan.nextDouble();
System.out.print("c = ");
c = scan.nextDouble();

delta = b*b-4*a*c;

if(a == 0){
if(b == 0){
System.out.println("一元一次方程无解!");
}
else{
System.out.printf("一元一次方程 x = %.4f\n", 1.0 * c / b);
}
}
else {
if(delta < 0){
System.out.println("一元二次方程无实根!");
}
else if(delta == 0){
x1 = -1.0 * b / (2*a);
System.out.printf("一元二次方程有两个相等实根 x1 = x2 = %.4f\n", x1);
}
else{
x1 = (-1.0 * b + Math.sqrt(delta)) / (2*a);
x2 = (-1.0 * b - Math.sqrt(delta)) / (2*a);
System.out.printf("一元二次方程有两个不同的实根 x1 = %.4f, x2 = %.4f\n", x1, x2);
}
}
}
}

11.
public class Test33 {
public static void main(String[] args) {
int a, b, c;
int num;
int count = 0;
for(a=1; a<=4; a++){
for(b=1; b<=4; b++){
for(c=1; c<=4; c++){
num = 100*a + 10*b + c;
count++;
System.out.printf("%4d", num);
if(count%10==0){
System.out.println();
}
}
}
}
System.out.println("\n共有无重复的三位数 " + count + " 个");
}
}

12.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int n;
int sign = 1;
int sum = 0;
Scanner scan = new Scanner(System.in);
while(true){
System.out.print("输入奇数(n):");
n = scan.nextInt();
if(n>0 && n%2==1){
break;
}
}

for(int i=1; i<=n; i+=2){
sum += sign * i;
sign *= -1;
}

System.out.println("1-3+5-7+...+n = " + sum);
}
}

13.
import java.util.Random;
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
//利用随机数生成一个包含n(n<50)个二位整数的数组,二位整数的数组的数值在[10,60],输出数组。
//并求出最大数和最小数,并显示出结果。

int i, n;
int[] arr;
int max, min;
Random rand = new Random();
Scanner scan = new Scanner(System.in);

while(true){
System.out.print("输入数组大小(0<n<50):");
n = scan.nextInt();
if(n>0 && n<50){
break;
}
}

arr = new int[n];
for(i=1; i<n; i++){
arr[i] = rand.nextInt(60);
if(arr[i] < 10){
arr[i] += 10;
}
}

max = min = arr[0];
for(i=1; i<n; i++){
if(arr[i] > max){
max = arr[i];
}
else if(arr[i] < min){
min = arr[i];
}
}

System.out.println("所有二位整数:");
for(i=1; i<=n; i++){
System.out.printf("%3d", arr[i-1]);
if(i%10==0){
System.out.println();
}
}
System.out.printf("\n最大数:%d,最小数:%d\n", max, min);
}
}

14.
import java.util.Scanner;

public class Test33 {
public static void main(String[] args) {
int i, n;
int f1=1, f2=2;
double sum = 0;
Scanner scan = new Scanner(System.in);

while(true){
System.out.print("输入数列的前n项(n>0):");
n = scan.nextInt();
if(n>0){
break;
}
}

for(i=1; i<=n; i++){
sum += 1.0 * f2 / f1;
f2 = f1 + f2;
f1 = f2 - f1;
}

System.out.printf("数列前%d项的和 = %.4f\n", n, sum);
}
}

15.
public class Test33 {
public static void main(String[] args) {
int total = 100; //总金额
int cock; //公鸡数
int hen; //母鸡数
int chicken; //小鸡数
int count = 0; //方案总数

for(cock=0; cock<=total/5; cock++){
for(hen=0; hen<=total/3; hen++){
for(chicken=0; chicken<=total*3; chicken++){
if(cock*5+hen*3+chicken/3.0 == total){
System.out.printf("方案%-3d\t公鸡:%2d只,母鸡: %2d只,小鸡: %2d只\n", ++count, cock, hen, chicken);
}
}
}
}
System.out.println("共有" + count + "种购买方案");
}
}

16.
public class Test33 {
public static void main(String[] args) {
int i, num, sum;

System.out.println("1000以内所有完数:");
for(num=1; num<=1000; num++){
for(sum=1,i=2; i<=num/2; i++){
if(num%i == 0){
sum += i;
}
}
if(sum == num){
System.out.println(num);
}
}
}
}

17.
public class Test33 {
public static void main(String[] args) {
int total = 1000;
int a, b, c; //单价分别为50、40、30元的3种商品的数量
int count = 0; //购买方案总数

System.out.println("所有的购买方案:");
for(a=1; a<=total/50; a++){
for(b=1; b<=total/40; b++){
for(c=1; c<=total/30; c++){
if(a+b+c==30 && 50*a+40*b+30*c==total){
System.out.printf("购买方案%2d:50元商品 %2d件,40元商品 %2d件,30元商品 %2d件\n", ++count, a, b, c);
}
}
}
}
System.out.printf("购买方案总数%2d\n", count);
}
}

18.
/

19.
/

20.
public class Test33 {
public static void main(String[] args) {
int num;
int count = 0;

System.out.println("所有满足条件的5位数:");
for(num=10000; num<100000; num++){
if(num%10==6 && num%3==0) {
System.out.printf("No.%5d:%d\n", ++count, num);
}
}
System.out.printf("这样的5位数共有:%d\n", count);
}
}

21.
public class Test33 {
public static void main(String[] args) {
int total;
for(total=1; ;total++){
if(total%2==1 && total%3==2 && total%5==4 && total%6==5 && total%7==0){
break;
}
}
System.out.println("这条阶梯最少共有" + total + "阶");
}
}

22.
public class Test33 {
public static void main(String[] args) {
int num;
int a, b, c, d; //千、百、十、个位数
int m;
for(num=1000; num<10000; num++){
a = num/1000;
b = num/100%10;
c = num/10%10;
d = num%10;
m = (int)Math.sqrt(num);
if(a==b && c==d && a!=c && m*m==num){
System.out.println(num);
}
}
}
}

每个题都好简单,但是咋一看好多题呀,你把每个题拆开来问,就算每个只有2分,我也会毫不犹豫的做的。

这位同学,你应该把这么多题目拆开发帖求助,2,3题一组发一贴,每贴悬赏分100。这样大家才有动力帮你做题啊,不然哪有人有这么多精力和时间帮你全部搞定啊。

都是作业题哈。
逐个贴到Google搜一下,没准就有答案了哈。

后补:果然,试了几个都有


求高人翻译,有关计算机,高额奖励分~
(回忆一下,一个关系是传递的当且仅当它是这样,对于所有的3元i,j,k ij和 jkik)为了使一个安姆特网络代表一个可执行的项目,优先权也应是非自反关系。代码9 (a)课程是特定的假设性大学的计算机技术学位所必须的。(b)安姆特网络代表课程如顶点和结点的先决条件 图6.26 顶点网络上的活动...

找电脑编程高人。
一、计算机语言的发展过程到目前为止,世界上公布的程序设计语言有上千种之多,常用的也有三十来种,为了有21于正确选择和使用它们,下面我们做一个简单介绍。(1)汇编语言:它是依赖于具体计算机的语言,用它编写出的程序,执行效率高,但是只在一些特殊要求或特殊的场合才使用它。(2)高级语言:大家可能都听过使用高级语言...

计算机网络技术 ! 请高人指点! 网看到此问题能够答疑解惑的大神给指点指...
1、A 技术标准千兆百兆兼容,但物理连接上有所区别,直观可以看到6类千兆铜缆4对线芯都起作用而且线缆中间有十字骨架;而百兆只有2对线芯做收发 2、A 它可以传输模拟,也可传输数字 安装方便,价格便宜 通常只用在局域网 屏蔽双绞线不容易受到干扰,无屏蔽双绞线易受干扰,但相比光纤和同轴电缆,...

急求哪位计算机高人帮我解一下下面这个题目,给点提示指点也行,拜托了...
4*7*8*4=896人,保证每个学生有一个上网端口,1 配4台cisco6509,每台提供不小于224个上网端口,即5块48口的板卡。2 将服务器单独接在一块或2块板卡上,看具体数量。3 4台设备做VSS虚拟成一台,在出口方向做NAT,代理上网。4 通过cisco设备的特性storm-control、减少广播域、多划分vlan走三层...

国家计算机二级一般考哪方面的比较好?求高人指导,我是学医的
这就要看你出来想从事哪方面了,计算机二级考试科目包含C语言、VISUAL BASIC 、VISUAL FOXPRO、JAVA、ACCESS、C++六大类,各科目各有所长,各有所用,看你自己情况了,各分类具体考试内容如下:二级C:DOS命令、计算机组成原理、多媒体、数据库操作、计算机网络、C语言程序设计、上机考试。二级C++:按照新...

计算机网络的问题,麻烦高人帮我详细解答
P2P:意思是在你自己下载的同时,自己的电脑还要继续做主机上传,这种下载方式,人越多速度越快,但缺点是对你的硬盘损伤比较大(在写的同时还要读),还有就是对你内存占用较多,影响整机速度!C\/S结构软件(即客户机\/服务器模式):分为客户机和服务器两层,客户机不是毫无运算能力的输入、输出设备...

电脑小白请教高人指导
个人觉得还是直接买台新的吧。256M的内存现在稍微运行打的程序可能都要卡。我自己是计算机专业的,去年买的内存都要到4G。如果台式电脑没有运行很大的程序,CPU配置酷睿T系列,内存2G也还可以。玩游戏的话显存可能要大点,256M或512M.

14计算机专业英语的句子!高人来翻译!
3 RAM(随机存储器):就是程序员可以直接编写、读、写记录的存储器。4 ROM(只读存储器):此存储器中记录只是在生产它的时候编写过一次,以后都不能被改写,而且在主机切断电源的情况下它依然在运行。5 系统软件是由包括操作系统(用以控制计算机的操作)在内的各种程序组成,它可以分为三个大类:操作...

计算机专业高人赐教,如何回答面试官这种问题?
计算机专业高人赐教,如何回答面试官这种问题? 本人工作4年了,跳了2个单位,对于自己的专业不是蛮对口,原来主要是从事PLC编程及硬件、电气方面的技术工作,...思路: 1、 通过应聘者对上级的“希望”可以判断出应聘者对自我要求的意识,这既上一个陷阱,又上一次机会。 2、 最好回避对上级具体的希望,多谈对自己的...

计算机网络 等待高人来破解此题
10个子网需要 2的4次方=16个子网,那么最后8位里前4位用来做子网,主机号位数就只剩下后4位。子网掩码是 255.255.255.240,240是 最后8位 11110000得来的,前4位要来做子网所以全满1。前3个子网是 192.73.65.16 , 192.73.65.32 , 192.73.65.48, 16、32、48是最后8位得来的,...

萨尔图区13512828220: 求计算机高人,要求JAVA的..谢谢了! 绘图的题目不用了 -
曲贾腹膜: //所有题的答案1.import java.util.Random;public class Test33 { public static void main(String[] args) { Random rand = new Random(); int a, b, c; int max, min; a = rand.nextInt(); b = rand.nextInt(); c = rand.nextInt(); max = a>b?(a>c?a:c):(b>c?b:c); min ...

萨尔图区13512828220: 计算机专业的Java方向的大学生,要达到什么水平才比较容易找工作? -
曲贾腹膜: 看你是什么学校了,名校还是有很多大公司去校招的,通过校招还是比较好的,社招的话一般公司都是以快速开发项目的目的来招人的,也就是你的框架必须掌握,最好能够直接参与开发,这样应届生工资也能开个4,5k,要是就会一些基础的可能就2k还累成狗

萨尔图区13512828220: 请问有谁是计算机高手,非常懂得用JAVA做小程序???
曲贾腹膜: 在《Java模块开发大全》中有一个项目是做电子相册的,可以参考一下. 纠错能力自己提高好点儿 !

萨尔图区13512828220: 大二计算机专业选方向,有三个,.net,嵌入式,java,急!!!求高人分析一下. -
曲贾腹膜: 真的很巧啊,我大四,2年前面临和你一样的选择,我是东北一家985大学的,身边很多嵌入式的,然后.NET和JAVA方向我都有一定程度的涉及,请把你的情况说具体一些,学校的环境还有你自己的基础和你的兴趣,我相信我一定能给你比较好的建议!

萨尔图区13512828220: Java对电脑的要求高吗 -
曲贾腹膜: 个人感觉这个配置开发java程序足够用了,一个java开发工具,一个数据库sql,mysql装上也没问题,同时启动会略卡,显卡好不好没卵用,你又不是做网站做游戏的.内存2G暂时够你用,如果感觉不怎么好那就换成3G或者4G,个人建议,弄个3G就够了,这个老本本,没必要折腾.等有钱了换个4000左右的,做开发足够了,而且能用好几年,电子产品更新换代本来就很快,所以也没必要买最新的最好的,合适就行.没必要纠结那些,最后个人建议选择联想的,我身边的好多同事都用联想的,我的也是,用了好几年,还是可以的.

萨尔图区13512828220: 求个java程序员的电脑配置以及价格,要求调试程序时速度快.基本要同时跑weblogic,oracle,myeclipse,还要 -
曲贾腹膜: 要求你说的已经很明白了,自己就能选了,上太平洋或者泡泡网自主攒机 或者买主流的整机即可 网页多开是浏览器配置的事情(内存2G及以上),QQ新出的TT 测试版反响还不错 n开不卡机.cpu选i3 530 + 微星 H55(这板子做的特漂亮) 或者 e8300 主板随便 价钱网上都有 不多淡

萨尔图区13512828220: 我想成为电脑高手,需要学习什么?例如C++,JAVA?
曲贾腹膜: 那要看你要干什么了?如果是编程的话,要先学C++,C过时了就别学了,主要是了解面向对象的编程思想得清楚,再细细的学JAVA. 还有最最重要的是数据结构,必须得很精,那是编程思想的问题.很重要的!

萨尔图区13512828220: 做java开发 对计算机基础要求高吗 -
曲贾腹膜: 不算太低,,,内存相对要多些,如i5+8g/16g ~~~~~

萨尔图区13512828220: 请问成为计算机高手需要学习哪几个编程语言,我要成为一个计算机高手和黑客.从今天开始. -
曲贾腹膜: 关键要学通一门,然后触类旁通,如果做黑客的话 就从C方向入手 如果想搞破坏来点现实的 就vb 如果想挣钱 进公司 就java .net

萨尔图区13512828220: 想学计算机程序设计(编程),请高人指点! -
曲贾腹膜: 你想自己学的话,应该比较困难.除非你毅力非一般人所有.还有这东西有人一起探考会好一点,充分利用网络,求助网络上的高人.有一个比较容易的方法就是去打一个软件学院学...

本站内容来自于网友发表,不代表本站立场,仅表示其个人看法,不对其真实性、正确性、有效性作任何的担保
相关事宜请发邮件给我们
© 星空见康网