點擊/回復 | 標題 | 最後回復 | 發表時間/侃吧 |
645/6 |
今天由于去听英语课程起床太早
导致我头疼了一下午,还甚至喉咙发炎了 |
3-13 | 3-12 |
527/5 |
【程序】在对话框的图像控件中显示网络图片
【运行效果】 ![]() |
1-7 | 3-11 |
673/8 |
【窗口程序】Win32全透明Aero窗口
![]() |
4-3 | 3-9 |
3007/8 |
【代码】WinHttp的基本用法
无关的参数全部传递NULL。 【示例1:下载一个png图像,并保持到磁盘上】 #include <stdio.h> #include <Windows.h>... |
4-29 | 3-8 |
456/1 |
今天,我报名参加了学校的英语口语俱乐部
不过讲的是美式英语! |
3-7 | 3-7 |
628/7 |
我们这学期要学国学,还要背论语,操蛋!
而且只要有一句话没背,期末考试直接60分以下,就得重修! |
7-24 | 3-7 |
257/0 |
【试题】牌型种数
小明被劫持到X赌城,被迫与其他3人玩牌。 一副扑克牌(去掉大小王牌,共52张),均匀发给4个人,每个人13张。 这时,小明脑子里突然冒出一个问题: 如果不考虑花色,只考虑点数,也不考... |
3-6 | 3-6 |
437/2 |
今天我做了几道蓝桥杯的题
我发现好几道根本就没有思路 |
3-6 | 3-5 |
417/5 |
【方法】获取磁盘容量
#include <iostream> #include <Windows.h> using namespace std; int main(void)... |
7-17 | 3-4 |
272/0 |
【试题】排序
#include <stdio.h> void swap(int *a, int *b) { int temp = *a;... |
3-4 | 3-4 |
355/1 |
【试题】图形显示
#include <stdio.h> int main() { int n, i, j;... |
4-16 | 3-4 |
354/1 |
【试题】复数运算
#include <stdio.h> #include <stdlib.h> typedef struct { f... |
4-16 | 3-4 |
346/0 |
【程序】C++中的大数进位加法
注意num1, num2, newnum中的数位都是倒着写的。比如1234要写成4321,方便对其数位。 【代码】 #include <iostream> using n... |
3-3 | 3-3 |
374/0 |
【方法】判断光驱里是否有光盘
GetVolumeInformation(TEXT("G:\\"), NULL, NULL, NULL, NULL, NULL, NULL, NULL); if (GetLastError()... |
3-3 | 3-3 |
595/7 |
【API】获取驱动器列表及其详细信息
#include <iostream> #include <tchar.h> #include <Windows.h> using namespa... |
7-17 | 3-3 |
323/1 |
【试题】十六进制转十进制
#include <stdio.h> int main() { char str[20], *pStr;... |
3-3 | 3-3 |
309/1 |
现在,蓝桥杯服务器500错误。。。
500 Internal Server Error nginx/1.4.7 |
3-3 | 3-3 |
286/0 |
【试题】十进制转十六进制
#include <stdio.h> char *tpl = "0123456789ABCDEF"; int main() {... |
3-3 | 3-3 |
268/0 |
【试题】特殊回文数
#include <stdio.h> int main() { int n, num;... |
3-3 | 3-3 |
278/0 |
【试题】回文数
#include <stdio.h> int main() { int num; int... |
3-3 | 3-3 |
249/0 |
【试题】特殊的数字
#include <stdio.h> int main() { int num; int... |
3-3 | 3-3 |
251/1 |
【试题】查找整数
#include <stdio.h> #include <stdlib.h> int main() { int n... |
3-3 | 3-3 |
258/1 |
【试题】数列特征
#include <stdio.h> #include <stdlib.h> int main() { int n... |
3-3 | 3-3 |
2492/40 |
蓝桥杯练习题集
基础练习 十六进制转十进制 时间限制:1.0s 内存限制:512.0MB 问题描述 从键盘输... |
3-3 | 3-3 |
315/6 |
十六进制 -> 八进制
#include <stdio.h> #include <stdlib.h> void main() { int... |
3-3 | 3-2 |
602/1 |
我们大学物理课本里的矢量都是用粗体字母的
物理里面终于也开始用向量了 |
3-2 | 3-2 |
418/6 |
杨辉三角代码
#include <stdio.h> #include <stdlib.h> void main() { int... |
3-3 | 3-1 |
279/1 |
字母图形代码
#include <stdio.h> #include <stdlib.h> void main() { int... |
3-3 | 3-1 |
320/1 |
【程序】使用WriteConsoleW函数在控制台中输出宽字符
#include <iostream> #include <Windows.h> // 使用此函数输出宽字符变量 // 普通字符串请直接用cout输出... |
3-1 | 3-1 |
539/2 |
【程序】一个最简单的MFC窗口程序
【代码】 #include <afxwin.h> class CMyWnd : public CFrameWnd { public:... ![]() |
3-1 | 3-1 |