c
zzh_rj
这个作者很懒,什么都没留下…
展开
-
用结构体的方法[ 定义时间结构体,输入某一时刻的时间,输出下一秒的时间]
#include<stdio.h> int main() { struct Time { int h; int m; int s; }t1,t2; scanf("%d:%d:%d",&t1.h,&t1.m,&t1.s); t2.s=t1.s+1; t2.m=t1.m; t2.h=t1.h; if(t2.s==60){ t2.m=t1.m+1;原创 2017-03-27 19:03:22 · 6179 阅读 · 1 评论 -
c语言 ——回文
例如:输入abcba,输出1;否则,输出0#include <stdio.h> #include <string.h> int isPlalindrome(char * s); int main() { char t[80]; char s[80]; int m; int i = 0; scanf("%s", s); if( isPlalindrome转载 2017-05-10 19:42:09 · 2401 阅读 · 0 评论 -
指针数组
Description 将数组a(大小为10)的数据复制到数组b中,并输出数组b的值Input 输入10个 Output 10个数 Sample Input 1 2 3 4 5 6 7 8 9 10 Sample Output 1 2 3 4 5 6 7 8 9 10#include<stdio.h> int cun(int *pa,int *pb) { for(int原创 2017-05-27 20:06:36 · 551 阅读 · 0 评论