自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 c#程序设计教程(李春葆第三版)第五章上机实验

1 using System; using System.Collections.Generic; using System.Text; namespace experment5_1 { class Student //学生类 { int sno; //学号 string sname; //姓名 Course[] cou...

2019-04-28 10:20:25 2919

原创 c#程序设计教程(李春葆第三版)第六章课后程序题答案

exci6-1 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace exci6_1 { public class Employee //普通职工类 { private double bsalary...

2019-04-28 10:16:55 5691 1

原创 c#程序设计教程(李春葆第三版)第五章课后程序题答案

exci5-1 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace exci5_1 { class Program { static void Main(string[] args) { Person...

2019-04-28 10:12:50 7646

原创 小学生程序(c语言课后题)

小学生第一题 #include <stdio.h> #include <stdlib.h> #include <time.h> int two(int a,int b); main() { int a,b,c,d,i; srand(time(NULL)); for(i=0;i<2;i++) { a=rand()%10+1; b=rand()%10+1; }...

2019-02-28 10:05:55 464

原创 算法小题(答案在下方)

第一题: 问题 D: 字符串反转 题目描述 小C很喜欢倒着写单词,现在给你一行小C写的文本,你能把每个单词都反转并输出它们吗? 输入 输入包含多组测试样例。第一行为一个整数T,代表测试样例的数量,后面跟着T个测试样例。 每个测试样例占一行,包含多个单词。一行最多有1000个字符。 输出 对于每一个测试样例,你应该输出转换后的文本。 样例输入 3 olleh !dlrow I ekil .bulcm...

2019-02-21 10:55:55 2433 5

原创 单项选择题标准化考试系统设计c语言版

单项选择题标准化考试系统设计 #include <stdio.h> #include <stdlib.h> #define TRUE 1 #define ERROR 0 #define MAX 30 typedef struct{ char xuanxiang1[30],xuanxiang2[30],xuanxiang3[30],xuanxiang4[30],Timu[1...

2019-02-21 10:52:41 10257 9

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除