摘要:
快开学了,今天开始按照老师的要求整理pta上的编程题,可多了。 #include<iostream> using namespace std; int main(){ cout<<"Talk is cheap. Show me the code."<<endl; return 0; } #inclu 阅读全文
摘要:
#include<iostream> using namespace std; void boy(int high,int weight); void girl(int high,int weight); int main(){ int N; int sex;//性别 int high;//身高 i 阅读全文
摘要:
#include<stdio.h> #include<math.h> struct prople{ int num; int name[10]; }p[10000],pmin;//pmin表示最小值 int main (void) { int i,n,sum=0; double half;//hal 阅读全文
摘要:
#include<stdio.h> int main(){ printf("PTA shi3 wo3 jing1 shen2 huan4 fa1 !"); return 0; } #include<iostream> #include<string> using namespace std; int 阅读全文
摘要:
#include <stdio.h> int main() { int N,i; float height; char a; scanf("%d",&N);//输入时不要加入\n for(i=0;i<N;i++) { scanf(" %c%f",&a,&height);//在前面加一个空格 过滤空白 阅读全文
摘要:
#include <iostream> #include <stdio.h> #include <string> using namespace std; int main() { int n; cin >> n; int a[1001] = {0}; for(int i = 0; i < n; i 阅读全文
摘要:
今天上午去考科目二,上一个考的人把车停的位置不对,我一上去一松手刹就开始溜车,停都停不住最后撞墙才停,也是非常的坎坷虽然我9点就考完了,但是他是一整个驾校几个人一起去的,所以我还要等其他人考完一起走,我万万没想到这一等直接到了下午2点,好在我考过了。 #include <iostream> #inc 阅读全文
摘要:
#include<stdio.h> int main() { int i; char s[20]="I Love GPLT"; #include<iostream> #include<set> #include<vector> using namespace std; int ans,ans1; i 阅读全文
摘要:
看完大道至简了,完成了读后感 大道至简读后感 根据序言我知道了这本书不同编程类的大多数书籍,在这本书中被没有很多的例子和实际上的讲解,作者更加注重与教会你思考的方式和编程这件事的本质。 从第一章开始我就感觉到了这本书的与众不同,第一章名为“编程的精义”,在我脑海中第一时间浮现出的就是一大堆的生僻晦涩 阅读全文
摘要:
今天上午建好了那个程序设计的小组群,感觉还是不太舒服睡了一上午 下午睡到三点起来玩了一会就去练车去了 晚上看了一会大道至简,看了一多半了马上就能写读后感了还打了一会代码 #include <iostream> #include <cctype> #include <cstring> using na 阅读全文