摘要:
import java.util.Scanner; public class XMT_Ex2 { public static void main(String[] args){ int month; while (true) { Scanner input = new Scanner(System. 阅读全文
摘要:
import java.util.Scanner; public class XMT_Ex3 { public static void main(String[] args){ int row=0; Scanner input = new Scanner(System.in); System.out 阅读全文
摘要:
数组:数组是用于储存多个相同类型数据的集合。 指针:指针是一个变量,但是它和普通变量不一样,它存放的是其它变量在内存中的地址。 1. 赋值 数组:只能一个一个元素的赋值或拷贝 指针:指针变量可以相互赋值 2. 表示范围 数组有效范围就是其空间的范围,数组名使用下表引用元素,不能指向别的数组 指针可以 阅读全文
摘要:
1.指针数组的应用: int* qishou[2];//定义一个有两个元素的指针数组,每个元素都是一个指针变量 #include <iostream> #include <string> #include <windows.h> using namespace std; int main() { i 阅读全文