Windows 课程实验
Thorold's Deer
It's easy to say , it's much more difficult to do.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
大二(上) Windows 加密与解密
#include<stdio.h> #include<stdlib.h> #include<iostream> using namespace std; //原码:Trvdizrrvj //译码:GSOOWFASOq int main() { char *a = (char*)malloc(sizeof(char) * 1000); char *b原创 2018-10-31 19:58:24 · 413 阅读 · 0 评论 -
大二(上) Windows 高精度加法代码,高精度减法代码
高精度加法代码 // 高精度加法 (封装) #include <iostream> #include <string> using namespace std; // string --> a[] int StoA(string s, int a[]) { int n = s.size(); for (int i = 0; i < n; i++)原创 2018-11-10 01:21:26 · 193 阅读 · 0 评论 -
大二(上) Windows 字符串的复制与连接
#include <stdio.h> #include <stdlib.h> #include <iostream> using namespace std; // 函数StrCpy:复制字符串 // 参数:src-被复制的字符串 // 返回值:复制完的字符串 char* StrCpy(char* src) {原创 2018-10-25 07:59:28 · 781 阅读 · 0 评论 -
大二(上) Windows 简单的数字打印
输出: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include <stdio.h> #include <stdlib.h> int main() { int j = 1; for (int i = 0; i < 5; i++) { for (int j原创 2018-10-25 07:56:18 · 274 阅读 · 0 评论 -
大二(上) Windows 日历的打印(两个月并列打印)
初版 // 包含两种I/O库,可以使用任一种输入输出方式 #include <stdio.h> #include <iostream> #include <iomanip> using namespace std; // 函数printYear:按要求的格式打印某年原创 2018-10-24 12:30:44 · 1107 阅读 · 0 评论
分享