點擊/回復 | 標題 | 最後回復 | 發表時間/侃吧 |
588/1 |
蓝桥杯还有四天了
rt |
3-18 | 3-16 |
563/0 |
【试题】翻硬币
#include <stdio.h> #include <string.h> #define sw(a) a=((a=='o')?'*':'o') #defi... |
3-16 | 3-16 |
918/2 |
做了一个显示侃吧信息的Windows程序
![]() |
3-15 | 3-15 |
656/3 |
【试题】打印十字图
#include <stdio.h> #include <stdlib.h> #include <string.h> char *arr;... |
3-16 | 3-15 |
555/0 |
【试题】错误票据
#include <stdio.h> int main(void) { int a[100001];... |
3-15 | 3-15 |
443/0 |
今天是圆周率节
rt |
3-14 | 3-14 |
480/1 |
【试题】分糖果
#include <stdio.h> #include <stdlib.h> // 执行一轮分发 void distribute(int *a, int n)... |
3-14 | 3-14 |
483/0 |
【试题】买不到的数目
#include <stdio.h> int main(void) { int a, b;... |
3-14 | 3-14 |
491/1 |
【试题】回文数字
#include <stdio.h> int main(void) { int n, i;... |
3-13 | 3-13 |
736/9 |
【试题】小朋友排队
![]() |
3-14 | 3-13 |
615/2 |
【试题】核桃的数量(三个数的最小公倍数的求法)
#include <stdio.h> //#define gcd3(a, b, c) gcd(gcd((a), (b)), (c)) #define lcm(a, b) ((a... |
3-13 | 3-13 |
615/6 |
【试题】带分数
#include <stdio.h> #include <string.h> int number, count = 0; int getn(char *st... |
3-13 | 3-13 |
485/0 |
全排列算法
#include <stdio.h> void swap(int *a, int *b) { int t = *a;... |
3-13 | 3-13 |
544/4 |
我的《蚂蚁感冒》的代码
#include <stdio.h> #include <stdlib.h> typedef struct _ANT {... |
3-13 | 3-13 |
819/6 |
今天由于去听英语课程起床太早
导致我头疼了一下午,还甚至喉咙发炎了 |
3-13 | 3-12 |
899/5 |
【程序】在对话框的图像控件中显示网络图片
【运行效果】 ![]() |
1-7 | 3-11 |
1007/8 |
【窗口程序】Win32全透明Aero窗口
![]() |
4-3 | 3-9 |
3235/8 |
【代码】WinHttp的基本用法
无关的参数全部传递NULL。 【示例1:下载一个png图像,并保持到磁盘上】 #include <stdio.h> #include <Windows.h>... |
4-29 | 3-8 |
602/1 |
今天,我报名参加了学校的英语口语俱乐部
不过讲的是美式英语! |
3-7 | 3-7 |
805/7 |
我们这学期要学国学,还要背论语,操蛋!
而且只要有一句话没背,期末考试直接60分以下,就得重修! |
7-24 | 3-7 |
456/0 |
【试题】牌型种数
小明被劫持到X赌城,被迫与其他3人玩牌。 一副扑克牌(去掉大小王牌,共52张),均匀发给4个人,每个人13张。 这时,小明脑子里突然冒出一个问题: 如果不考虑花色,只考虑点数,也不考... |
3-6 | 3-6 |
614/2 |
今天我做了几道蓝桥杯的题
我发现好几道根本就没有思路 |
3-6 | 3-5 |
663/5 |
【方法】获取磁盘容量
#include <iostream> #include <Windows.h> using namespace std; int main(void)... |
7-17 | 3-4 |
489/0 |
【试题】排序
#include <stdio.h> void swap(int *a, int *b) { int temp = *a;... |
3-4 | 3-4 |
583/1 |
【试题】图形显示
#include <stdio.h> int main() { int n, i, j;... |
4-16 | 3-4 |
574/1 |
【试题】复数运算
#include <stdio.h> #include <stdlib.h> typedef struct { f... |
4-16 | 3-4 |
514/0 |
【程序】C++中的大数进位加法
注意num1, num2, newnum中的数位都是倒着写的。比如1234要写成4321,方便对其数位。 【代码】 #include <iostream> using n... |
3-3 | 3-3 |
600/0 |
【方法】判断光驱里是否有光盘
GetVolumeInformation(TEXT("G:\\"), NULL, NULL, NULL, NULL, NULL, NULL, NULL); if (GetLastError()... |
3-3 | 3-3 |
868/7 |
【API】获取驱动器列表及其详细信息
#include <iostream> #include <tchar.h> #include <Windows.h> using namespa... |
7-17 | 3-3 |
553/1 |
【试题】十六进制转十进制
#include <stdio.h> int main() { char str[20], *pStr;... |
3-3 | 3-3 |