- 博客(33)
- 收藏
- 关注
原创 QAction小记
除此之外,QAction 类还继承自 QObject 类,因此也可以使用 Q_OBJECT 宏进行信号与槽的连接。需要注意的是,在使用 QAction 类时,需要先将其添加到菜单或工具栏等界面元素中,才能呈现出来供用户操作。QAction 是 Qt 框架提供的一个动作类,用于封装应用程序中的动作操作。它通常与菜单、工具栏等界面元素结合使用,提供用户交互式的操作体验。
2023-04-19 13:37:25 247
原创 从键盘输入n和a的值,计算a+aa+aaa+...+aa...a(n个a)的值。
4.从键盘输入n和a的值,计算a+aa+aaa+…+aa…a(n个a)的值。逻辑分析:设N=4,a=3;3 x 10+3=>33,即aa=a x 10+a;33 x 10+3=>330, 即aaa=aa x 10+a;333 x 10+3=>3330,即aaaa=aaa x 10+a;则可以设一个中间变量temp表示a 的累乘+a/(aa…a)的值。{______}n个a然后加上累加每次temp的值,得到结果sum.#include <stdio.h>i
2021-05-15 17:56:48 6692 2
原创 2021-04-29
1.(for循环)计算机1+2+3+ …+100的和2.(for循环)计算1+3+5+…+99的和3.(while/)把1.2两题用while循环改写<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="view
2021-04-29 23:24:05 218
原创 2.(for循环)计算1+3+5+...+99的和(html)
2.(for循环)计算1+3+5+…+99的和(html)<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale
2021-04-29 23:19:12 1011
原创 (for循环)计算机1+2+3+ ...+100的和
``(for循环)计算机1+2+3+ …+100的和2.(for循环)计算1+3+5+…+99的和<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-
2021-04-29 23:14:04 1638
原创 三子棋
三子棋实现模块``#define _CRT_SECURE_NO_WARNINGS 1#include "game.h"void InitBoard(char board[ROW][COL], int row, int col){ int i = 0; int j = 0; for (i = 0; i < row; i++) { for (j = 0; j < col; j++) { board[i][j] = ' '; } }}void DisplayB
2020-12-31 02:16:37 209 1
原创 练习
#include<stdio.h>#include<math.h>int main(){ double a, b, c, p; double circumference = 0; double area = 0; scanf("%lf%lf%lf", &a, &b, &c); circumference = a + b + c; p = (a + b + c) / 2.0; area = sqrt
2020-12-17 22:48:47 95
原创 day_11
递归与迭代#include <stdio.h>int count = 0;//int Fib(int n)//递归的算法有重复计算(2的n次方)。效率差。//{// //if (n == 3)//测试第三个斐波那契数的计算次数// //{// // count++;// //}// if (n <= 2)// return 1;// else// {//// return Fib(n - 1) + Fib(n - 2);// }//}int Fib
2020-12-15 22:43:50 68
原创 day_10(函数)
//add的头文件声明#ifndef __ADD_H__#define __ADD_H__//函数的声明int Add(int x, int y);#endif//add函数int Add(int x, int y){ return x + y;}#include<stdio.h>#include "add.h"#include<string.h>//int main()//{ // int a = 10;// int b = 20;//
2020-12-14 23:30:58 84
原创 牛客网BC13,BC14
#include<stdio.h>int main(){ printf("%c", 73); printf("%c", 32); printf("%c", 99); printf("%c", 97); printf("%c", 110); printf("%c", 32); printf("%c", 100); printf("%c", 111); printf("%c", 32); printf("%c", .
2020-12-05 00:37:52 155
原创 学习测试day_9(函数)
//#define _crt_secure_no_warnings 1//#include<stdio.h>//#include<string.h>//int main()//{ //// int len = 0;// //1// len = strlen(“abc”);// printf("%d\n", len);// //2(链式访问)// printf("%d\n", strlen(“abc”));//}//int main()////{// pr
2020-12-03 23:48:44 78
原创 牛客网BC35
题目描述从键盘任意输入一个字符,编程判断是否是字母(包括大小写)。输入描述:多组输入,每行输入包括一个字符。输出描述:针对每行输入,输出该字符是字母(YES)或不是(NO)。示例1输入复制H9输出复制YESNO#include<stdio.h>#include<string.h>int main(){ char ch; while((ch=getchar())!=EOF) { if('A'<=ch &
2020-12-03 23:41:28 95
原创 牛客网BC9
题目描述KiKi写了一个输出“Hello world!”的程序,BoBo老师告诉他printf函数有返回值,你能帮他写个程序输出printf(“Hello world!”)的返回值吗?输入描述:无输出描述:包括两行:第一行为“Hello world!”第二行为printf(“Hello world!”)调用后的返回值。#include<stdio.h>int main(){ int a = printf("Hello world!"); printf("\n"
2020-12-03 23:20:03 139
原创 练习题练习(1)
输出大V;#include<stdio.h>int main(){ printf("v v\n"); printf(" v v\n"); printf(" v\n"); return 0;}输出下列关键字的储存空间```c#include<stdio.h>int main(){ printf("The size of short is %d bytes.\n", sizeof(short)); printf("The size of int is
2020-12-02 23:41:09 86
原创 学习测试day_8(函数)
#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<string.h>//int main()//{// char arr1[] = “haha********”;// char arr2[20] = “###############”;// strcpy(arr2, arr1);// printf("%s", arr2);// return 0;//}//int main()//{// c
2020-12-02 21:53:38 83
原创 用函数判断一个数是否为素数
#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<math.h>int Prime(int x)//判断是否为素数{ int z = 0; int i = 0; for (i = 2; i < sqrt(x); i++) { if (x % i == 0) { z = x; break; } } return z;}int main(){ int a = 0
2020-12-02 21:52:18 2373 2
原创 猜数字游戏
#include<stdio.h>#include<stdlib.h>#include<time.h>void game(){ int ret; int guess = 0; ret = rand() % 100 + 1; printf("%d\n", ret); while (1) { printf("请输入你猜的数:"); scanf("%d", &guess); if (guess > ret) { prin
2020-12-02 00:16:05 90 1
原创 关机程序
#include<stdlib.h>#include <string.h>#include<stdio.h>int main(){char input[20] = {0};system(“shutdown -s -t 60”);zaiyic:printf(“请注意,你的电脑在1分钟内关机,如果输入:我是猪,就取消关机\n请输入>:”);scanf("%s", &input);if (strcmp(input,“我是猪”)==0)syst
2020-12-02 00:13:42 244
原创 学习测试day_7
#define _CRT_SECURE_NO_WARNINGS 1//#include<stdio.h>//#include<stdlib.h>//#include<time.h>//int main()//{// time_t seconds;//// seconds = time(NULL);// printf(“自 1970-01-01 起的小时数 = %d\n”, seconds /3600);//// return 0;//}//voi
2020-12-02 00:12:44 112
原创 学习测试day_6
#define _CRT_SECURE_NO_WARNINGS 1//#include<stdio.h>//int main()//求两个数的公约数。(1)//{ // int m,n,t;// scanf("%d%d", &m, &n);// while (t = m % n)// {// m = n;// n = t;// }// printf("%d\n", n);// return 0;//}//#include<stdio.h>
2020-11-30 22:11:10 77
原创 学习测试day_5
#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<string.h>#include<windows.h>#include<stdlib.h>int main(){int i = 0;char password[20] = { 0 };printf(“请输入密码:>”);scanf("%s", password);for (i = 0; i < 3; i++)
2020-11-29 23:43:19 243
原创 输出三位数的水仙花数。
输出三位数的水仙花数。(水仙花数=(个位)3+(十位)3+(百位)3#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>int main(){ int i,a,b,c; for (i = 100; i <1000; i++) { a = i % 10; b = i / 10 % 10; c = i / 100; if (i == a * a * a + b * b * b + c * c * c) p
2020-11-28 23:31:19 963
原创 输出乘法口诀表
输出乘法口诀表#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>int main()//乘法口诀表{ int num1 = 0; int num2 = 0; int sum = 0; for (num1 = 1; num1 <= 9; num1++) { for (num2 = 1; num2 <=num1; num2++) { sum = num1 * num2; printf("%2d*
2020-11-28 23:16:10 151
原创 学习测试day_4
/*#define _CRT_SECURE_NO_WARNINGS 1#include <stdio.h>*//* int main(){*/ //int x = 0;//a++,++a的测试; //int y = 0; //int z = 0; //int s = 0; //z++; //++s; //printf("%d\n", x++); //printf("%d\n", ++y); //printf("%d\n", z); //printf("%d\n",.
2020-11-28 23:07:54 65
原创 for循环练习(阶乘);
求n的阶乘; #define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>int main()//求n的阶乘;{ int n = 0; int sum = 1; scanf("%d",&n); for (int i = 1; i <= n; i++) { sum = sum * i; } printf("%d", sum); return 0;}解法一:求1!+2!+3!+…+10!; #define _
2020-11-28 23:06:41 11337
原创 day_4
#define _CRT_SECURE_NO_WARNINGS 1//#include<stdio.h>//int main()//{ // int age = 20;// //if (age < 18)// // printf(“未成年\n”);// //else// if(18<=age<28)// printf(“青年\n”);// return 0;//}//int main()//求奇数//{// int a = 50;// if (0
2020-11-27 20:09:55 71
原创 输出的1~100的奇数的解法
#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>//int main()//求1~100的奇数 解法一;//{// int i = 1;// while (i <= 100)// {// if (1 == i % 2)// printf("%d “, i);//// i++;// }// return 0;////}int main()//求1~100的奇数 解法二;{ for (int i =
2020-11-27 20:08:43 620
原创 day_3
#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<string.h>struct Man{ char name[10]; int age; int height; char sex[10]; int id;};int main(){ struct Man zs = { "张丙", 18, 175,"男", 20200103 }; struct Man* pd = &zs; .
2020-11-26 12:22:14 94 1
原创 day_2(附件)
//#define _CRT_SECURE_NO_WARNINGS 1//static int c_ad = 2021;// static int ADD (int x, int y)//{// int z = x + y;//// return z;//}
2020-11-25 21:45:48 56
原创 学习测试day_2_(1)
#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>int main(){char ch = ‘w’;char* pc = &ch;printf("%d\n", sizeof(pc));printf("%p\n", &ch);printf("%p\n", pc);printf("%c\n", *pc);*pc = ‘W’;printf("%c\n", pc);}//int main()//{// int
2020-11-25 21:44:21 80
原创 比较大小值练习
#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>//int main()//比较两个数,写法1//{// int sum1 = 0;// int sum2 = 0;// scanf("%d %d", &sum1, &sum2);//// if (sum1 > sum2)// printf(“较大值%d”, sum1);// else// printf(“较大值%d”, sum2);//// r
2020-11-24 21:57:55 128
原创 学习测试day1
#include <stdio.h>//int main()//{// printf("%d\n", strlen(“abcdef”));//// printf("%d\n", strlen(“c:\test\128\test.c”));//// return 0;//}//int main()//{// int arr[5] = { 1,2,3,4,5 };// int i = 0;// while (i < 5)// {// printf("%d\
2020-11-24 21:51:48 64
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人