第一次过程性考核

Posted nbvc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一次过程性考核相关的知识,希望对你有一定的参考价值。

码云主页:https://gitee.com/Helen_en

7-1:要求输出Hello world!

码云地址: <script src=‘https://gitee.com/mnbvcxzzxcvbnm/codes/6pjxm5h3id40s9calk7ro22/widget_preview?title=gistfile1.txt‘></script>

设计思路:直接输出System.out.println(Hello world!);

运用的知识点:System.out,println

运用代码:

public class Main {
public static void main  (String args[]) {
System.out.println("Hello World!");
}
}

运行结果:

技术分享图片

 

7-2:求1到100的和技术分享图片

码云地址:<script src=‘https://gitee.com/mnbvcxzzxcvbnm/codes/ft1aih6uy40dl9b7mskoe93/widget_preview?title=gistfile1.txt‘></script>

设计思路:应用循环  ,自加  

运用知识点:

public class Main {
public static void main  (String args[]){
  int sum=0;
  for(int i=1;i<=100;i++){
    sum=sum+i;
  }
  System.out.println("sum = "+sum);
}
}

运行结果:

技术分享图片

 

7-3:计算居民水费

为鼓励居民节约用水,自来水公司采取按用水量阶梯式计价的办法

码云地址:<script src=‘https://gitee.com/mnbvcxzzxcvbnm/codes/jfby1ux4atihwlc36v92829/widget_preview?title=gistfile1.txt‘></script>

设计思路:要求输入,所以运用输入输出语句;有不同的收费标准,所以运用if else 判断语句;要求保留小数点后两位,%.2f。

运用知识点:if()else();print;%.2f

运用代码:

import java.util.Scanner;
public class Main {
  public static void main (String args[]){
    Scanner sc =new Scanner(System.in);
    double y;
    double x =sc.nextDouble();
    if(x>=0 && x<=15) {
      y = 4 * x / 3;
    }
    else {
      y = 2.5 * x - 17.5;
    }
  System.out.printf("%.2f",y);
  }
}


 

运行结果:   

技术分享图片

7-4:打印九九乘法表

码云地址:<script src=‘https://gitee.com/mnbvcxzzxcvbnm/codes/pfkl4mboi0hjt6ravdq8y77/widget_preview?title=gistfile1.txt‘></script>

设计思路:运用了for循环,判断前面的数j是否小于等于后面的i,不是就进行下一次一循环;要求等号后面占四位,%-4d。        

运用知识点:for循环;i++;%-4d

运行代码:

import java.util.Scanner;
public class Main {
  public static void main(String[] args) {
Scanner cin = new Scanner(System.in);
int n = cin.nextInt();
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= i; j++) {
if (j == i) {
System.out.printf("%d*%d=%-4d ", j, i, i * j);
}
else {
System.out.printf("%d*%d=%-4d", j, i, i * j);
}
}
}
}
}

运行结果:

技术分享图片































以上是关于第一次过程性考核的主要内容,如果未能解决你的问题,请参考以下文章

第一次过程性考核

第一次过程性考核

第一次过程性考核——结构化程序设计

[2018-2019上 网络工程] 第4次过程性考核

第一次过程性考核

第一次过程性考核