上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 75 下一页
摘要: 用strchr搜索字符,并把搜索到的字符串保存到新字符串中 #include <stdio.h> #include <string.h> #include <stdlib.h> //用于malloc(), free()函数 int main() { char s[] = "Bienvenidos a 阅读全文
posted @ 2020-06-18 19:36 profesor 阅读(209) 评论(0) 推荐(0)
摘要: 找出字符串Bienvenidos a todos中所有的字符e #include <stdio.h> #include <string.h> int main() { char s[] = "Bienvenidos a todos"; char * p = strchr(s, 'e'); //通过这 阅读全文
posted @ 2020-06-18 19:26 profesor 阅读(213) 评论(0) 推荐(0)
摘要: DNS servers in China https://public-dns.info/nameserver/cn.html How to easily set up a static ip address in Ubuntu using the GUI(12.04) https://www.yo 阅读全文
posted @ 2020-06-17 12:00 profesor 阅读(179) 评论(0) 推荐(0)
摘要: 方法一: String[] words = new String[] {"precarious", "exiguous", "prodigious"}; //注意new String[] 这里的[]必须是空的 方法二: String[] words = {"precarious", "exiguou 阅读全文
posted @ 2020-06-14 22:37 profesor 阅读(468) 评论(0) 推荐(0)
摘要: 整齐的二维数组 import java.util.Random; public class a2d { public static void main(String[] args) { var rand = new Random(); int[][] scores = new int[3][5]; 阅读全文
posted @ 2020-06-14 22:04 profesor 阅读(1231) 评论(0) 推荐(0)
摘要: //统计[1,100]之间的素数个数,并求和 #include <stdio.h> #include <math.h> #include <stdbool.h> bool isPrime(int ); int main() { int num; // scanf("%d", &num); int s 阅读全文
posted @ 2020-06-14 19:23 profesor 阅读(922) 评论(0) 推荐(0)
摘要: //把02.txt中的内容写入到05.txt中 import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; public class Backup { public static void mai 阅读全文
posted @ 2020-06-14 18:31 profesor 阅读(130) 评论(0) 推荐(0)
摘要: public class ArrayDemo { public static void main(String[] args) { int[] a = {1, -9, 34, 67, 0, 12 ,34 ,5, 6, 11}; System.out.println(Sum(a)); } static 阅读全文
posted @ 2020-06-14 17:52 profesor 阅读(526) 评论(0) 推荐(0)
摘要: //用PrintWriter写入文件 import java.io.IOException; import java.io.PrintWriter; public class PrintWriteDemo { public static void main(String[] args) throws 阅读全文
posted @ 2020-06-14 17:50 profesor 阅读(2884) 评论(0) 推荐(0)
摘要: Employee.java Manager.java Driver.java 阅读全文
posted @ 2020-06-13 23:01 profesor 阅读(175) 评论(0) 推荐(0)
上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 75 下一页