摘要:
Java方法 创建加法 public class Demo01 { public static void main(String[] args) { int a = 0; a = add(1,2); System.out.println(a); } public static int add(int 阅读全文
摘要:
1.C语言字符串 字符串(character string)是一个或多个字符的序列,例如:"Zing went the strings of my heart!" C语言没有专门用于储存字符串的变量类型,字符串都被储存在char类型的数组中。数组由连续的存储单元组成,字符串中的字符被储存在相邻的存储 阅读全文