? ? ? ? 终于,放假了,我们学校绝对算的上是一系列高校中放假最晚的一批了(隔壁的中学都放假了)。今天考的是C语言,只能说是简简单单啊,真比我平时刷的题和练习的代码简单了几个维度,直接50分中就全部做完还检查了一次,然后就回家了。
? ? ? ? 寒假得好好的利用起来,我想把C++学完,然后就可以进入java的学习了(个人目前想走的是java方向),这还是大大的任重而道远啊,所以说还得练。
#define _CRT_SECURE_NO_WARNINGS
//#include <stdio.h>
//main()
//{
// float a, b, c, t;
// a = 3;
// b = 7;
// c = 1;
// if (a > b)
// {
// t = a; a = b; b = t;
// }
// if (a > c)
// {
// t = a; a = c; c = t;
// }
// if (b > c)
// {
// t = b; b = c; c = t;
// }
// printf("%5.2f,%5.2f,%5.2f", a, b, c);
//}
//#include <stdio.h>
//main()
//{
// int num, c;
// scanf("%d", &num);
// do
// {
// c = num % 10;
// printf("%d", c);
// }
// while ((num/=10)>0);
// printf("\n");
//}
//#include <stdio.h>
//#define N 4
//main()
//{
// int i, j;
// for (i = 1; i <= N; i++)
// {
// for (j = 1; j < i; j++)
// printf(" ");
// printf("*");
// printf("\n");
// }
//}
//
//#include <stdio.h>
//int m[3][3] = { {1},{2},{3} };
//int n[3][3] = { 1,2,3 };
//main()
//{
// printf("%d", m[1][0] + n[0][0]);
// printf("%d\n", m[0][1] + n[1][0]);
//}
#include<stdio.h>
//int main()
//{
// int i = 3;
// while (i--)
// {
// printf("%d", i);
// }
//
// return 0;
//}
int main()
{
int x = 0, y = 0, z = 0;
x++ && y++ && z++;
printf("%d %d %d", x, y, z);
return 0;
}
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
//int* func(void)
//{
// int* p = new int(10);
// return p;
//}
//int main()
//{
// int* a = func();
// cout << *a << endl;
// cout << *a << endl;
// cout << *a << endl;
// cout << *a << endl;
//
//
//
//}
//int* func(void)
//{
// int p = 10;
// return &p;
//}
//
//
//int main()
//{
// int* a = func();
// cout << *a << endl;
// cout << *a << endl;
//
// return 0;
//}
int* func(void)
{
int* p = (int*)malloc(4);
*p = 10;
return p;
}
int main()
{
int* a = func();
cout << *a << endl;
return 0;
}
? ? ? ? 寒假加油!?