「配枪朱丽叶。」

RootのCTF学习笔记。

Entries from 2019-10-02 to 1 day

C语言Windows图形界面学习(一)

1.新建工程Win32 Application 2.选择“一个简单的Win32程序” 3.转移到FileView区查看源代码: // testwo.cpp : Defines the entry point for the application. // #include "stdafx.h" int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, L…

用递归求阶乘和大数阶乘

用递归求阶乘 #include <stdio.h> unsigned long factional(unsigned long n) { if(n<0) return 1; else if(n==1) return 1; else return (unsigned long)n*factional(n-1); } int main() { unsigned long n; printf("请输入一个整数n(n>0):"); scanf("%d",&n); prin</stdio.h>…