1 package com.pingfan.array; 2 3 public class ArrayDemo2 { 4 public static void main(String[] args) { 5 //静态初始化:创建 + 赋值 6 int[] a ={1,2,3,4,5,6,7,8}; ...
分类:
其他好文 时间:
2021-04-30 12:34:23
阅读次数:
0
实验任务1 #include <stdio.h> long long fun(int n); // 函数声明 int main() { int n; long long f; while(scanf("%d", &n) != EOF) { f = fun(n); // 函数调用 printf("n ...
分类:
编程语言 时间:
2021-04-30 12:31:46
阅读次数:
0
任务1 #include <stdio.h> long long fun(int n); // 函数声明 int main() { int n; long long f; while(scanf("%d", &n) != EOF) { f = fun(n); // 函数调用 printf("n = ...
分类:
其他好文 时间:
2021-04-30 12:31:08
阅读次数:
0
#include<stdio.h> void fun(int n); int main(){ int n; long long f; while(scanf("%d", &n)!=EOF){ fun(n); } return 0; } void fun(int n){ int f[505],a[50 ...
分类:
其他好文 时间:
2021-04-30 12:29:16
阅读次数:
0
1,计算0到100之间奇数和偶数的和 public static void main(String[] args) { //练习,计算0到100之间的奇数和偶数的和 int oddsum=0;//奇数 int evensum=0;//偶数 for(int i=0;i<=100;i++){ if(i% ...
分类:
其他好文 时间:
2021-04-30 12:27:04
阅读次数:
0
#include <stdio.h> long long fun(int n); // 函数声明 int main() { int n; long long f; while(scanf("%d", &n) != EOF) { f = fun(n); // 函数调用 printf("n = %d, ...
分类:
其他好文 时间:
2021-04-30 12:24:09
阅读次数:
0
一、循环嵌套 1. 下列代码的运行结果是( ) public static void main(String[] args){ int count = 0; for(int j = 0;j<3;j++) { for(int i = 0;i<6;i++) { count++; } } System.o ...
分类:
编程语言 时间:
2021-04-30 12:15:08
阅读次数:
0
常见程序设计概念 函数 函数在rust中无处不在, 对于rust程序来讲, main函数是许多程序的入口, 之前我们知道, 建立一个函数的关键字是 fn rust使用下划线命名法来命名, 这个之前也有提到过 我们来看下面的程序 fn main() { println!("Hello, world!" ...
分类:
编程语言 时间:
2021-04-30 12:12:35
阅读次数:
0
package com.itheima.demo01.arr; public class ShuZuTuZi { public static void main(String[] args) { //为了存储多个月兔子对数,定义一个数组,用动态初始化完成数组元素的初始化,长度为20 int[] ar ...
分类:
其他好文 时间:
2021-04-30 12:11:35
阅读次数:
0
package com.itheima.demo02; public class ShangYingDianYing { public static void main(String[] args) { String starring = "刘鑫 张玉提 高源"; System.out.printl ...
分类:
其他好文 时间:
2021-04-30 11:59:42
阅读次数:
0