Young小杰2017.3.2(0)2626
// if语句实现选择结构.cpp : Defines the entry point for the console application.#include "stdafx.h"...
Young小杰2017.3.2(1)2415
// 选择结构和条件判断.cpp : Defines the entry point for the console application.#include "stdafx.h"#incl...
Young小杰2017.1.2(0)2273
/*******扫雷游戏*********/#include<stdlib.h>#include<time.h>int main(void){ i...
Young小杰2016.12.30(0)2286
//杨辉三角 int b[9][9]; printf(".....................................................\n"); for(in...
Young小杰2016.12.29(0)2657
#include <stdio.h>int main(){ //二维数组和循环 int a[9][9]; //for循环 for (int i=1;i<=9...
Young小杰2016.12.27(0)1938
#include <stdio.h>int main(){ //定义一个一维数组 //数组中存储5个int类型的元素 int a[10]; a[0] = 10;...
Young小杰2016.12.27(0)2062
#include <stdio.h>int main(){ int a[10]; a[0] = 10; //1 a[1] = 20; //2 a[...
Young小杰2016.12.27(0)2088
#include <stdio.h>int main(){ //数组:用来存储同样一个类型的多个元素的结构 //定义一个数组 //int表示数组中元素的类型 //...
Young小杰2016.12.27(0)2677
#include <stdio.h>int main(){ //while二重循环 int i = 0; int j = 0; int result = 0;...
Young小杰2016.12.27(6)2075
#include <stdio.h>int main(){ //简易式计算器 int q,w,e,r,t; for(int q =0;q<5;q++...
Young小杰2016.12.26(0)2724
#include <stdio.h>int main(){ //打印所有的偶数 for(int i=0;i<10;i++) { if(i%2!=1) ...
Young小杰2016.12.25(4)2768
#include <stdio.h>int main(){ //for循环语法 //第一个表达式:定义循环体变量 //只在第一次执行循环时,执行一次,之后都不再执行 ...
Young小杰2016.12.25(0)2249
#include <stdio.h>int main(){ //while循环 //int age = 18; int a = 0; //while循环 ()中...
Young小杰2016.12.25(0)2173
#include <stdio.h>int main(){ //goto语句 int age = 18; //跳转语句标示符号 A: printf...
Young小杰2016.12.25(0)1949
#include <stdio.h>int main(){ //unsigned定义一个无符号类型的字符变量 //计算机中使用8位来存储 //0000 00...