2018年11月26日
摘要: 1 public class Strings { 2 3 4 /** 5 * 重复某个字符 6 * 7 * 例如: 8 * 'a' 5 => "aaaaa" 9 * 'a' -1 => "" 10 * 11 * @param c 被重复的字符 12 ... 阅读全文
posted @ 2018-11-26 19:20 singleday 阅读(210) 评论(0) 推荐(0) 编辑
  2018年10月12日
摘要: 1 //game.h 2 3 4 5 #ifndef __GAME_H__ 6 #define __GAME_H__ 7 8 #include 9 #include 10 #include 11 #include 12 13 #define ROW 3 14 #define COL 3 15 16 void InitBoard(cha... 阅读全文
posted @ 2018-10-12 18:13 singleday 阅读(242) 评论(0) 推荐(0) 编辑
  2018年10月11日
摘要: 1. #include #include int main () { int i=0; int j=0; int k=0; int l=0; char arr1[] = " * "; char arr2[] = "*************" ; int right = 14; int left = 1; ... 阅读全文
posted @ 2018-10-11 21:36 singleday 阅读(181) 评论(0) 推荐(0) 编辑
  2018年9月19日
摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 int main() 4 { 5 int a = 1; 6 int b = 2; 7 a = a + b; 8 b = a - b; 9 a = a - b; 10 printf("a=%d\n", a); 11 阅读全文
posted @ 2018-09-19 17:32 singleday 阅读(106) 评论(0) 推荐(0) 编辑
  2018年9月17日
摘要: 我是一个计算机专业的大三学生,准备在这一年里努力的学习编程和相关的专业知识,时间就是金钱,还剩不到一年的时间,我准备每天抽出三个小时学习编程,然后再利用其他时间多看看书熟悉面向对象的特征和几种语言之间的联系和区别 我对自己定的目标是 掌握两到三种语言并且精通JAVA语言毕业后我期待进入的IT公司是腾 阅读全文
posted @ 2018-09-17 11:11 singleday 阅读(216) 评论(0) 推荐(0) 编辑