点击/回复 | 标题 | 最后回复 | 发表时间/侃吧 |
412/3 |
【试题】打印十字图
#include <stdio.h> #include <stdlib.h> #include <string.h> char *arr;... |
3-16 | 3-15 |
319/0 |
【试题】错误票据
#include <stdio.h> int main(void) { int a[100001];... |
3-15 | 3-15 |
285/0 |
今天是圆周率节
rt |
3-14 | 3-14 |
299/1 |
【试题】分糖果
#include <stdio.h> #include <stdlib.h> // 执行一轮分发 void distribute(int *a, int n)... |
3-14 | 3-14 |
245/0 |
【试题】买不到的数目
#include <stdio.h> int main(void) { int a, b;... |
3-14 | 3-14 |
268/1 |
【试题】回文数字
#include <stdio.h> int main(void) { int n, i;... |
3-13 | 3-13 |
545/9 |
【试题】小朋友排队
![]() |
3-14 | 3-13 |
311/2 |
【试题】核桃的数量(三个数的最小公倍数的求法)
#include <stdio.h> //#define gcd3(a, b, c) gcd(gcd((a), (b)), (c)) #define lcm(a, b) ((a... |
3-13 | 3-13 |
384/6 |
【试题】带分数
#include <stdio.h> #include <string.h> int number, count = 0; int getn(char *st... |
3-13 | 3-13 |
314/0 |
全排列算法
#include <stdio.h> void swap(int *a, int *b) { int t = *a;... |
3-13 | 3-13 |
346/4 |
我的《蚂蚁感冒》的代码
#include <stdio.h> #include <stdlib.h> typedef struct _ANT {... |
3-13 | 3-13 |
616/6 |
今天由于去听英语课程起床太早
导致我头疼了一下午,还甚至喉咙发炎了 |
3-13 | 3-12 |
649/5 |
【程序】在对话框的图像控件中显示网络图片
【运行效果】 ![]() |
1-7 | 3-11 |
638/5 |
【窗口程序】Win32全透明Aero窗口
![]() |
3-13 | 3-9 |
3117/7 |
【代码】WinHttp的基本用法
无关的参数全部传递NULL。 【示例1:下载一个png图像,并保持到磁盘上】 #include <stdio.h> #include <Windows.h>... |
3-11 | 3-8 |
522/1 |
今天,我报名参加了学校的英语口语俱乐部
不过讲的是美式英语! |
3-7 | 3-7 |
588/7 |
我们这学期要学国学,还要背论语,操蛋!
而且只要有一句话没背,期末考试直接60分以下,就得重修! |
7-24 | 3-7 |
292/0 |
【试题】牌型种数
小明被劫持到X赌城,被迫与其他3人玩牌。 一副扑克牌(去掉大小王牌,共52张),均匀发给4个人,每个人13张。 这时,小明脑子里突然冒出一个问题: 如果不考虑花色,只考虑点数,也不考... |
3-6 | 3-6 |
490/2 |
今天我做了几道蓝桥杯的题
我发现好几道根本就没有思路 |
3-6 | 3-5 |
551/5 |
【方法】获取磁盘容量
#include <iostream> #include <Windows.h> using namespace std; int main(void)... |
7-17 | 3-4 |
279/0 |
【试题】排序
#include <stdio.h> void swap(int *a, int *b) { int temp = *a;... |
3-4 | 3-4 |
310/1 |
【试题】图形显示
#include <stdio.h> int main() { int n, i, j;... |
4-16 | 3-4 |
347/1 |
【试题】复数运算
#include <stdio.h> #include <stdlib.h> typedef struct { f... |
4-16 | 3-4 |
489/0 |
【程序】C++中的大数进位加法
注意num1, num2, newnum中的数位都是倒着写的。比如1234要写成4321,方便对其数位。 【代码】 #include <iostream> using n... |
3-3 | 3-3 |
467/0 |
【方法】判断光驱里是否有光盘
GetVolumeInformation(TEXT("G:\\"), NULL, NULL, NULL, NULL, NULL, NULL, NULL); if (GetLastError()... |
3-3 | 3-3 |
710/7 |
【API】获取驱动器列表及其详细信息
#include <iostream> #include <tchar.h> #include <Windows.h> using namespa... |
7-17 | 3-3 |
294/1 |
【试题】十六进制转十进制
#include <stdio.h> int main() { char str[20], *pStr;... |
3-3 | 3-3 |
293/1 |
现在,蓝桥杯服务器500错误。。。
500 Internal Server Error nginx/1.4.7 |
3-3 | 3-3 |
299/0 |
【试题】十进制转十六进制
#include <stdio.h> char *tpl = "0123456789ABCDEF"; int main() {... |
3-3 | 3-3 |
274/0 |
【试题】特殊回文数
#include <stdio.h> int main() { int n, num;... |
3-3 | 3-3 |