基础程序
Carb_5683
天道酬勤 用心
展开
-
for循环限制输入
//A Guessing Game#include <stdio.h>int main(void){ int chosen = 15; int guess = 0; int count = 3; printf("This is a guessing game."); printf("\n I have chosen a numeber between 1 a翻译 2016-10-21 19:30:06 · 675 阅读 · 0 评论 -
p303 使用指针给函数传递数据
试试看:使用指针对字符串排序使用数据排序的简单方法介绍如何使用数组记号和指针 用更实际的方式练习使用指针给函数传递数据#define _STDC_WANT_LIB_EXT1_ 1#include <stdio.h>#include <stdlib.h>#include <stdbool.h>#include <string.h>#define BUF_LEN 100#define C翻译 2016-11-07 16:04:40 · 410 阅读 · 0 评论 -
求质数
动态内存分配如果一个数不是质数,他必定能被比它小的质数整数。只能被1和它本身整除的数都是质数质数都是奇数#define _STDC_WANT_LIB_EXT1_ 1#include <stdlib.h>#include <stdio.h>#include <stdbool.h>int main(){ unsigned long long *pPrimes = NULL;翻译 2016-11-07 23:30:52 · 501 阅读 · 0 评论 -
常用代码片段
三个数比较大小#include <stdio.h>int main(){ int a, b, c; printf("请输入需要比较的三个数:"); scanf("%d %d %d",&a,&b,&c); if (a > b) { if (c > a) { printf("%d %d %d",c,b,a)翻译 2016-10-25 10:54:11 · 301 阅读 · 0 评论 -
do-while循环
int number = 4;while(number < 4){ printf("\nNumber = %d", number); number++;} do-while循环是在循环结束时测试循环是否继续,所以do-while循环的语句或语句块至少会执行一次。 while循环是在循环开始处进行测试,条件是false时,根本就不执行循环体。int number = 4翻译 2016-10-22 00:03:12 · 500 阅读 · 0 评论 -
字符串的读入程序总结
只有使用指针,才能动态内存分配 堆中的内存是由程序员控制的。 创建指针变量引用字符串const size_t BUF_SIZE = 100;char buffer[BUF_SIZE];scanf_s("%s",buffer,BUF_SIZE);//size_t length = strnlen_s(buffer,BUF_SIZE)+1;char *pString = malloc(l翻译 2016-10-21 18:56:14 · 1142 阅读 · 0 评论 -
简单程序
通过指针改变其他变量的值#include <stdio.h>int main(){ int x = 10; int y = 20; int *p1 = NULL; int *p2=NULL; p1 = &x; p2 = &y; printf("%d\n", *p1); printf("%d\n",*p2); return 0;}翻译 2016-10-22 18:27:38 · 757 阅读 · 0 评论 -
闰年
#include <stdio.h>int main(){ int year = 2014; if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { printf("%s\n","今年是闰年"); } else { printf("%s\n","今年是平翻译 2016-10-30 17:38:33 · 860 阅读 · 0 评论 -
嵌套的for循环
汇总整数的程序为基础 嵌套循环中的计算//Sum of successive integer sequences#include <stdio.h>int main(){ unsigned long sum = 0; unsigned int count = 0;//Prompt for,and read the input count printf("\nEnt翻译 2016-10-21 20:34:53 · 443 阅读 · 0 评论