自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

唐文宁的博客

修身齐家治国平天下(欢迎评论)

  • 博客(66)
  • 收藏
  • 关注

原创 java 百元百鸡 分数的输入

package 第二次作业; //java包import java.util.Scanner; //简易输入头文件public class 第四题第三问 { //类名 public static voi

2017-10-10 01:26:04 385

原创 c++面试总结及其面试题

1.正确使用内存分配和释放函数。2.智能指针。3.RAII原则。4.垃圾回收。5.使用标准容器和数据结构。6.内存分析工具。

2023-08-22 17:02:37 176

原创 操作系统-进程调度-进程与线程-笔记

2019-10-19 18:14:38 236

原创 您对我的安全主页网站有什么建议?

2018-10-15 01:03:58 273

原创 安全网站建议

2018-10-15 00:54:03 413

转载 简单是生命最美丽的形式

世界其实很简单,只是人心很复杂。其实人心也是很简单的,三字经开篇就记载:人之初、性本善。只是后来利益分配很复杂,所以这世界不得不复杂着,人心也一样在复杂中走向复杂而不能再回归到之初的简单中了。  人与人之间的关系其实很简单,由于利益分配很复杂,才有了尔虞我诈、勾心斗角。一些生活中本来只不过是一点儿沙尘小事也必得要争个水落石出,在得失中人性却发生了质的变化。  只要是公共的地方有钱和物,人们并不在意...

2018-02-16 15:50:37 298 1

转载 用死亡简化生命

一直在想,活着的意义究竟是什么?就甘于简简单单的结婚、生子、养育、死去?中间再夹些物质上的享受就视为幸福?一生就为这几件事操劳和奔波?不,我从来都是一个叛逆的人,就这样过一生恐怕不是我喜欢的,在完成属于使命的同时我总得为自己做些事吧?或者至少,让自己临死前没有任何遗憾吧!是啊,这是一个沉重的话题,人总是要死的,一辈子也就3万天不到,总共900个月而已,要怎么过才能对得起自己呢?抛开所有现实的桎梏(...

2018-02-16 15:35:09 275

原创 您对超人搜索有什么建议?

2018-01-02 17:21:43 1489 1

原创 C语言 字母加4密码

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char zifu; printf("请输入源密码:"); while((

2017-10-19 13:15:19 3052

原创 c语言求素数

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int a,n,i,sushu=1; printf("请输入起始与结束的数:")

2017-10-18 20:09:52 1332

原创 fibonacci数列计算

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int shu1=1,shu2=1,i,n; printf("请输入数列位数的一

2017-10-17 22:43:13 380

原创 c语言输出pai的近似值

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop *///pai的近似值=1-1/3+1/5-1/7+……; int main(int argc, char** argv) { double n,fenzi=

2017-10-17 22:20:23 4972

原创 C语言把1——100内不能被3整除的数输出

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int shu=1,dijishu=0; printf("这是1——100,不能

2017-10-17 16:53:54 16846 3

原创 C语言do while实现n!

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int n,dangqianshu=1,jiechengshu=1; print

2017-10-17 16:45:43 4750

原创 C语言用while求n!

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int n,dangqianshu=1,jiecheng=1; printf("

2017-10-17 16:39:45 10102

原创 C语言 用if goto求n!

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { printf("这是一个求n!的程序,请输入n:"); int n; scan

2017-10-17 16:33:03 717

原创 C语言输入成绩等级输出对应分数段

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int chengji; printf("请输入成绩:"); scanf("%

2017-10-17 16:22:04 32015

原创 C语言大小写转换

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char zifu; //声明字符型变量zifu

2017-10-15 21:52:18 3036

原创 C语言判断输入数正负

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int shu1,shu2; printf("请输入需要判断的数:"); sc

2017-10-15 21:25:02 20320 2

原创 C语言三数比大小

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int shu1,shu2,shu3; printf("请输入比大小的三个数:"

2017-10-15 20:44:17 1798

原创 C语言比较两数大小

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int shu1,shu2; printf("请输入比较大小的两个数:");

2017-10-15 20:33:20 7090

原创 用c语言求解一元二次方程

#include #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int a,b,c;

2017-10-15 20:14:08 19373 7

原创 C语言输入小写输出大写

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char zifu;

2017-10-15 14:07:34 9032 1

原创 输入三角形的三边长输出面积

#include #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop *///公式area=sqrt(s*(s-bian1)*(s-bian2)*(s-bian3)),s=(bian1+bian2+bian3)

2017-10-15 13:49:26 3649

原创 scanf输入

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int zhengshu1,zhengshu2,zhengshu3;

2017-10-15 13:20:08 367

原创 输出制定小数位

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { double shilishu=12345.67890;

2017-10-15 13:12:56 241

原创 双精度有效位

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { double shuangjingdu1,shuangjingdu2,he;

2017-10-15 13:03:30 497

原创 实型数据的有效位

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { float shixing=8888.88,shixing1=1111.11;

2017-10-15 12:22:27 663

原创 C语言 字符串的输出

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { printf("%3s,%7.4s,%7.2s,%5.4s","xiaopihai

2017-10-15 11:56:10 335

原创 字符数据的输出

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char fuhao='a'; int shuzi=97; printf("

2017-10-15 11:45:56 298

原创 C语言 输入单个字符

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char zifu;

2017-10-14 17:08:33 23803

原创 输出单个字符

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char zifu1,zifu2,zifu3;

2017-10-14 16:58:45 828

原创 改变字符型各值

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char c1,c2,c3,c4,c5;

2017-10-14 16:51:40 253

原创 强制类型转换

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { float shixing;

2017-10-14 16:03:01 222

原创 大小写字母的转换

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char zifu1,zifu2;

2017-10-14 15:52:00 1094

原创 c语言字符型赋予整型

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { char zifu1,zifu2;

2017-10-14 15:43:26 3144

原创 转义字符的使用

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { printf(" 撇n的作用是\n试验1\n");

2017-10-14 15:37:32 1102

原创 C语言整型溢出

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { short bianliang1,bianliang2;

2017-10-14 15:17:47 426

原创 整型定义的使用

#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int bianliang1,bianliang2,he1,he2;

2017-10-14 15:00:21 379

原创 符号变量的使用

#include #include #define HONG 30 /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int changliang,ji; cha

2017-10-14 11:52:20 949

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除