摘要: 代码逆向之旅2 1 // Lab01-02_Reverse.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 2 // 3 4 #include<windows.h> 5 #include<stdio.h> 6 #include<stdlib.h> 7 #include<Wi 阅读全文
posted @ 2022-03-23 22:04 菜鸡拾光 阅读(193) 评论(0) 推荐(0)
摘要: 九九乘法表 1 #include"stdio.h" 2 int main() 3 { 4 int i, j, t; 5 for (i = 1; i <= 9; i++) 6 { 7 for (j = 1; j <= i; j++) 8 printf("%d*%d=%d ", i, j, i * j) 阅读全文
posted @ 2022-03-23 16:34 菜鸡拾光 阅读(120) 评论(0) 推荐(0)
摘要: 单词统计 1 #include"stdio.h" 2 #include"string.h" 3 int main() 4 { 5 int i, c = 0, count = 0; 6 char str[80]; 7 gets(str); 8 for (i = 0; str[i] != '\0'; i 阅读全文
posted @ 2022-03-23 16:23 菜鸡拾光 阅读(42) 评论(0) 推荐(0)